Consider i have the followin two datasets:
fillData () {
this.datacollection = {
labels: this.generateLabels(this.getKonto),
datasets: [
{
label: 'Loan',
data: this.generateLabels(this.loanTotal),
borderColor: "#ff8148",
fill: false
}, {
label: 'Cost',
data: this.generateLabels(this.costTotal).reverse(),
borderColor: "#ffe59f",
fill: false
}
]
},
Both "data" represent an array of 10 values each. Both lines are linear. Is it possible to highlight an intersection point whereever one line crosses the other?