Chart.js — 绘制任意垂直线
Chart.js — drawing an arbitrary vertical line
如何使用 Chart.js 在 x 轴上的特定点绘制垂直线?
特别是,我想在折线图上画一条线来指示当前日期。这是图表的模型:
http://i.stack.imgur.com/VQDWR.png
更新 - 此答案适用于 Chart.js 1.x,如果您正在寻找 2.x 答案,请查看评论和其他答案.
您扩展折线图并在绘制函数中包含绘制线条的逻辑。
预览
HTML
<div>
<canvas id="LineWithLine" width="600" height="400"></canvas>
</div>
脚本
var data = {
labels: ["JAN", "FEB", "MAR", "APR", "MAY", "JUN", "JUL", "AUG", "SEP", "OCT", "NOV", "DEC"],
datasets: [{
data: [12, 3, 2, 1, 8, 8, 2, 2, 3, 5, 7, 1]
}]
};
var ctx = document.getElementById("LineWithLine").getContext("2d");
Chart.types.Line.extend({
name: "LineWithLine",
draw: function () {
Chart.types.Line.prototype.draw.apply(this, arguments);
var point = this.datasets[0].points[this.options.lineAtIndex]
var scale = this.scale
// draw line
this.chart.ctx.beginPath();
this.chart.ctx.moveTo(point.x, scale.startPoint + 24);
this.chart.ctx.strokeStyle = '#ff0000';
this.chart.ctx.lineTo(point.x, scale.endPoint);
this.chart.ctx.stroke();
// write TODAY
this.chart.ctx.textAlign = 'center';
this.chart.ctx.fillText("TODAY", point.x, scale.startPoint + 12);
}
});
new Chart(ctx).LineWithLine(data, {
datasetFill : false,
lineAtIndex: 2
});
选项 属性 lineAtIndex 控制画线的点。
Fiddle - http://jsfiddle.net/dbyze2ga/14/
我不得不解决如何用 ChartJS 2.0 做类似事情的麻烦,所以我想我会分享。
这是基于覆盖图表原型的新方法,如下所述:https://github.com/chartjs/Chart.js/issues/2321
var ctx = document.getElementById('income-chart');
var originalDraw = Chart.controllers.line.prototype.draw;
Chart.controllers.line.prototype.draw = function (ease) {
originalDraw.call(this, ease);
var point = dataValues[vm.incomeCentile];
var scale = this.chart.scales['x-axis-0'];
// calculate the portion of the axis and multiply by total axis width
var left = (point.x / scale.end * (scale.right - scale.left));
// draw line
this.chart.chart.ctx.beginPath();
this.chart.chart.ctx.strokeStyle = '#ff0000';
this.chart.chart.ctx.moveTo(scale.left + left, 0);
this.chart.chart.ctx.lineTo(scale.left + left, 1000000);
this.chart.chart.ctx.stroke();
// write label
this.chart.chart.ctx.textAlign = 'center';
this.chart.chart.ctx.fillText('YOU', scale.left + left, 200);
};
分享我的 chartjs.org 2.5 版解决方案。我想使用一个插件,使实现可重用。
const verticalLinePlugin = {
getLinePosition: function (chart, pointIndex) {
const meta = chart.getDatasetMeta(0); // first dataset is used to discover X coordinate of a point
const data = meta.data;
return data[pointIndex]._model.x;
},
renderVerticalLine: function (chartInstance, pointIndex) {
const lineLeftOffset = this.getLinePosition(chartInstance, pointIndex);
const scale = chartInstance.scales['y-axis-0'];
const context = chartInstance.chart.ctx;
// render vertical line
context.beginPath();
context.strokeStyle = '#ff0000';
context.moveTo(lineLeftOffset, scale.top);
context.lineTo(lineLeftOffset, scale.bottom);
context.stroke();
// write label
context.fillStyle = "#ff0000";
context.textAlign = 'center';
context.fillText('MY TEXT', lineLeftOffset, (scale.bottom - scale.top) / 2 + scale.top);
},
afterDatasetsDraw: function (chart, easing) {
if (chart.config.lineAtIndex) {
chart.config.lineAtIndex.forEach(pointIndex => this.renderVerticalLine(chart, pointIndex));
}
}
};
Chart.plugins.register(verticalLinePlugin);
用法很简单:
new Chart(ctx, {
type: 'line',
data: data,
label: 'Progress',
options: options,
lineAtIndex: [2,4,8],
})
上面的代码在位置 2,4 和 8 插入红色垂直线,运行 通过这些位置的第一个数据集的点。
我强烈建议使用 Chartjs-Plugin-Annotation。
可在 CodePen
找到示例
var chartData = {
labels: ["JAN", "FEB", "MAR", "APR", "MAY", "JUN", "JUL", "AUG", "SEP", "OCT", "NOV", "DEC"],
datasets: [
{
data: [12, 3, 2, 1, 8, 8, 2, 2, 3, 5, 7, 1]
}
]
};
window.onload = function() {
var ctx = document.getElementById("canvas").getContext("2d");
new Chart(ctx, {
type: "line",
data: chartData,
options: {
annotation: {
annotations: [
{
type: "line",
mode: "vertical",
scaleID: "x-axis-0",
value: "MAR",
borderColor: "red",
label: {
content: "TODAY",
enabled: true,
position: "top"
}
}
]
}
}
});
};
点击这里了解更多详情:
这是一支可以实现类似效果的笔,无需 chartjs-plugin-annotation,或修改 Chart.js 渲染方式,或任何其他插件:https://codepen.io/gkemmey/pen/qBWZbYM
方法
- 使用组合条形图/折线图,并使用条形图绘制垂直线。
- 使用两个 y 轴:一个用于条形图(我们不显示),一个用于所有其他折线图数据集。
- 强制条形图 y 轴为
min: 0
和 max: 1
。任何时候你想画一条垂直线,添加一个数据对象,比如 { x: where_the_line_goes, y: 1 }
到你的条形图数据集。
- 笔还为条形图数据集添加了一些自定义数据和图例过滤器和标签回调以从图例中排除条形图数据集,并控制垂直线上的标签。
优点
- 没有其他依赖项。没有自定义猴子修补/扩展。
- 注释插件似乎没有得到积极维护。例如,atm,他们的事件处理程序抛出关于 "preventing default on passive events"
的错误
- 也许是专业人士:注释插件总是显示所画线条的标签,您必须使用它们的事件回调来获得悬停显示效果。 Chart.js 悬停时默认显示工具提示。
缺点
- 我们正在数据集配置中添加自定义数据,希望它不会与 Chart.js 所做的任何事情发生冲突。它的数据 Chart.js 预计不会存在,但从 2.8 开始,也不会破坏它。
如何使用 Chart.js 在 x 轴上的特定点绘制垂直线?
特别是,我想在折线图上画一条线来指示当前日期。这是图表的模型: http://i.stack.imgur.com/VQDWR.png
更新 - 此答案适用于 Chart.js 1.x,如果您正在寻找 2.x 答案,请查看评论和其他答案.
您扩展折线图并在绘制函数中包含绘制线条的逻辑。
预览
HTML
<div>
<canvas id="LineWithLine" width="600" height="400"></canvas>
</div>
脚本
var data = {
labels: ["JAN", "FEB", "MAR", "APR", "MAY", "JUN", "JUL", "AUG", "SEP", "OCT", "NOV", "DEC"],
datasets: [{
data: [12, 3, 2, 1, 8, 8, 2, 2, 3, 5, 7, 1]
}]
};
var ctx = document.getElementById("LineWithLine").getContext("2d");
Chart.types.Line.extend({
name: "LineWithLine",
draw: function () {
Chart.types.Line.prototype.draw.apply(this, arguments);
var point = this.datasets[0].points[this.options.lineAtIndex]
var scale = this.scale
// draw line
this.chart.ctx.beginPath();
this.chart.ctx.moveTo(point.x, scale.startPoint + 24);
this.chart.ctx.strokeStyle = '#ff0000';
this.chart.ctx.lineTo(point.x, scale.endPoint);
this.chart.ctx.stroke();
// write TODAY
this.chart.ctx.textAlign = 'center';
this.chart.ctx.fillText("TODAY", point.x, scale.startPoint + 12);
}
});
new Chart(ctx).LineWithLine(data, {
datasetFill : false,
lineAtIndex: 2
});
选项 属性 lineAtIndex 控制画线的点。
Fiddle - http://jsfiddle.net/dbyze2ga/14/
我不得不解决如何用 ChartJS 2.0 做类似事情的麻烦,所以我想我会分享。
这是基于覆盖图表原型的新方法,如下所述:https://github.com/chartjs/Chart.js/issues/2321
var ctx = document.getElementById('income-chart');
var originalDraw = Chart.controllers.line.prototype.draw;
Chart.controllers.line.prototype.draw = function (ease) {
originalDraw.call(this, ease);
var point = dataValues[vm.incomeCentile];
var scale = this.chart.scales['x-axis-0'];
// calculate the portion of the axis and multiply by total axis width
var left = (point.x / scale.end * (scale.right - scale.left));
// draw line
this.chart.chart.ctx.beginPath();
this.chart.chart.ctx.strokeStyle = '#ff0000';
this.chart.chart.ctx.moveTo(scale.left + left, 0);
this.chart.chart.ctx.lineTo(scale.left + left, 1000000);
this.chart.chart.ctx.stroke();
// write label
this.chart.chart.ctx.textAlign = 'center';
this.chart.chart.ctx.fillText('YOU', scale.left + left, 200);
};
分享我的 chartjs.org 2.5 版解决方案。我想使用一个插件,使实现可重用。
const verticalLinePlugin = {
getLinePosition: function (chart, pointIndex) {
const meta = chart.getDatasetMeta(0); // first dataset is used to discover X coordinate of a point
const data = meta.data;
return data[pointIndex]._model.x;
},
renderVerticalLine: function (chartInstance, pointIndex) {
const lineLeftOffset = this.getLinePosition(chartInstance, pointIndex);
const scale = chartInstance.scales['y-axis-0'];
const context = chartInstance.chart.ctx;
// render vertical line
context.beginPath();
context.strokeStyle = '#ff0000';
context.moveTo(lineLeftOffset, scale.top);
context.lineTo(lineLeftOffset, scale.bottom);
context.stroke();
// write label
context.fillStyle = "#ff0000";
context.textAlign = 'center';
context.fillText('MY TEXT', lineLeftOffset, (scale.bottom - scale.top) / 2 + scale.top);
},
afterDatasetsDraw: function (chart, easing) {
if (chart.config.lineAtIndex) {
chart.config.lineAtIndex.forEach(pointIndex => this.renderVerticalLine(chart, pointIndex));
}
}
};
Chart.plugins.register(verticalLinePlugin);
用法很简单:
new Chart(ctx, {
type: 'line',
data: data,
label: 'Progress',
options: options,
lineAtIndex: [2,4,8],
})
上面的代码在位置 2,4 和 8 插入红色垂直线,运行 通过这些位置的第一个数据集的点。
我强烈建议使用 Chartjs-Plugin-Annotation。
可在 CodePen
找到示例var chartData = {
labels: ["JAN", "FEB", "MAR", "APR", "MAY", "JUN", "JUL", "AUG", "SEP", "OCT", "NOV", "DEC"],
datasets: [
{
data: [12, 3, 2, 1, 8, 8, 2, 2, 3, 5, 7, 1]
}
]
};
window.onload = function() {
var ctx = document.getElementById("canvas").getContext("2d");
new Chart(ctx, {
type: "line",
data: chartData,
options: {
annotation: {
annotations: [
{
type: "line",
mode: "vertical",
scaleID: "x-axis-0",
value: "MAR",
borderColor: "red",
label: {
content: "TODAY",
enabled: true,
position: "top"
}
}
]
}
}
});
};
点击这里了解更多详情:
这是一支可以实现类似效果的笔,无需 chartjs-plugin-annotation,或修改 Chart.js 渲染方式,或任何其他插件:https://codepen.io/gkemmey/pen/qBWZbYM
方法
- 使用组合条形图/折线图,并使用条形图绘制垂直线。
- 使用两个 y 轴:一个用于条形图(我们不显示),一个用于所有其他折线图数据集。
- 强制条形图 y 轴为
min: 0
和max: 1
。任何时候你想画一条垂直线,添加一个数据对象,比如{ x: where_the_line_goes, y: 1 }
到你的条形图数据集。 - 笔还为条形图数据集添加了一些自定义数据和图例过滤器和标签回调以从图例中排除条形图数据集,并控制垂直线上的标签。
优点
- 没有其他依赖项。没有自定义猴子修补/扩展。
- 注释插件似乎没有得到积极维护。例如,atm,他们的事件处理程序抛出关于 "preventing default on passive events" 的错误
- 也许是专业人士:注释插件总是显示所画线条的标签,您必须使用它们的事件回调来获得悬停显示效果。 Chart.js 悬停时默认显示工具提示。
缺点
- 我们正在数据集配置中添加自定义数据,希望它不会与 Chart.js 所做的任何事情发生冲突。它的数据 Chart.js 预计不会存在,但从 2.8 开始,也不会破坏它。