Chart.js / HTML Canvas - 移动线

时间:2016-09-14 23:05:40

标签: javascript canvas html5-canvas chart.js chart.js2

我需要使用Chart.js在HTML画布上移动垂直线。

我正在使用它:

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();`

http://jsfiddle.net/dbyze2ga/377/但我需要的是在点击网页上的按钮时将该行移动到另一个索引。我读到了关于html canvas的内容,发现删除行是“不可能”的,但后来我发现:https://jsfiddle.net/ombaww9t/2/并且行正在移动。

所以我需要的可能就是这两个例子的组合。

感谢您的回复。

1 个答案:

答案 0 :(得分:0)

我用插件来解决它。

var verticalLinePlugin = {
afterDraw: function(chartInstance) 
{       
    var index = weatherMainChart.config.options.verticalLine[0].x;

    if (index) 
    {
            if (chartInstance.options.verticalLine) 
            {
                var canvas = chartInstance.chart;
                var ctx = canvas.ctx;
                var xaxis = chartInstance.scales['x-axis-0'];
                var yaxis = chartInstance.scales['A'];

                ctx.save();
                ctx.beginPath();
                ctx.moveTo(xaxis.getPixelForValue(undefined, index), yaxis.top + 32);
                ctx.strokeStyle = '#005580';
                ctx.lineTo(xaxis.getPixelForValue(undefined, index), yaxis.bottom);
                ctx.stroke();
                ctx.restore();
            };
    }
}
};

Chart.pluginService.register(verticalLinePlugin);