I would like to use a string string for my line chart. But every solution I found only works with chartjs v1.
Is this their solution for the newest?
thats I developed with chartjs v1, but as I said, I did not find a way to do this with version 2.
jsfiddle
Chart.types.Line.extend({
name: "LineAlt",
initialize: function () {
Chart.types.Line.prototype.initialize.apply(this, arguments);
var ctx = this.chart.ctx;
var originalStroke = ctx.stroke;
ctx.stroke = function () {
ctx.save();
ctx.shadowColor = '#E56590';
ctx.shadowBlur = 10;
ctx.shadowOffsetX = 0;
ctx.shadowOffsetY = 4;
originalStroke.apply(this, arguments)
ctx.restore();
}
}
});
var data = {
labels: ["January", "February", "March", "April", "May", "June", "July"],
datasets: [
{
label: "My First dataset",
fillColor: "#fff",
strokeColor: "#ffb88c",
pointColor: "#fff",
pointStrokeColor: "#ffb88c",
pointHighlightFill: "#ffb88c",
pointHighlightStroke: "#fff",
data: [65, 59, 80, 81, 56, 55, 40]
}
]
};
var ctx = document.getElementById("canvas").getContext("2d");
var myChart = new Chart(ctx).LineAlt(data, {
datasetFill: false
});
Html:
<canvas id="canvas" width="600" height="300" style="background-color:#fff"></canvas>
source
share