mirror of
https://github.com/chartjs/Chart.js.git
synced 2025-12-08 20:36:08 +00:00
27 lines
572 B
JavaScript
27 lines
572 B
JavaScript
function slope({p0, p1}) {
|
|
return (p0.y - p1.y) / (p1.x - p0.x);
|
|
}
|
|
|
|
module.exports = {
|
|
config: {
|
|
type: 'line',
|
|
data: {
|
|
labels: ['a', 'b', 'c', 'd', 'e', 'f'],
|
|
datasets: [{
|
|
data: [1, 2, 3, 3, 2, 1],
|
|
borderColor: 'black',
|
|
segment: {
|
|
borderColor: ctx => slope(ctx) > 0 ? 'green' : slope(ctx) < 0 ? 'red' : undefined,
|
|
borderDash: ctx => slope(ctx) < 0 ? [5, 5] : undefined
|
|
}
|
|
}]
|
|
},
|
|
options: {
|
|
scales: {
|
|
x: {display: false},
|
|
y: {display: false}
|
|
}
|
|
}
|
|
}
|
|
};
|