admin管理员组文章数量:1435859
I have a bar chart like this
i need to draw Horizontal dashed line looks below
I am using chart js to create this graph. Kindly help me to draw this base line.
var ctx = document.getElementById("baseLinebar");
var myChart = new Chart(ctx, {
type: 'bar',
data: {
labels: ["25", "60", "15", "30"],
datasets: [{
data: [25, 60, 15, 30],
backgroundColor: [
'rgba(255, 99, 132, 1)',
'rgba(54, 162, 235, 1)',
'rgba(255, 206, 86, 1)',
'rgba(75, 192, 192, 1)'
]
}]
},
options: {
scales: {
xAxes: [{
gridLines: {
display:false
},
barThickness:40
}],
yAxes: [{
gridLines: {
display:false
}
}]
}
}
});
I have a bar chart like this
i need to draw Horizontal dashed line looks below
I am using chart js to create this graph. Kindly help me to draw this base line.
var ctx = document.getElementById("baseLinebar");
var myChart = new Chart(ctx, {
type: 'bar',
data: {
labels: ["25", "60", "15", "30"],
datasets: [{
data: [25, 60, 15, 30],
backgroundColor: [
'rgba(255, 99, 132, 1)',
'rgba(54, 162, 235, 1)',
'rgba(255, 206, 86, 1)',
'rgba(75, 192, 192, 1)'
]
}]
},
options: {
scales: {
xAxes: [{
gridLines: {
display:false
},
barThickness:40
}],
yAxes: [{
gridLines: {
display:false
}
}]
}
}
});
Share
Improve this question
asked Dec 19, 2016 at 11:12
Arunkumar VasudevanArunkumar Vasudevan
5,3404 gold badges29 silver badges41 bronze badges
2 Answers
Reset to default 5Here we have used horizonalLinePlugin
and register it with the Chart pluginService
. you can use the horizontalLine
as an attribute of option
in config
. Use this fiddle
JS
var config = {
type: 'bar',
data: {
labels: ["25", "60", "15", "30"],
datasets: [{
data: [25, 60, 15, 30],
backgroundColor: [
'rgba(255, 99, 132, 1)',
'rgba(54, 162, 235, 1)',
'rgba(255, 206, 86, 1)',
'rgba(75, 192, 192, 1)'
]
}]
},
options: {
scales: {
xAxes: [{
gridLines: {
display: true
},
barThickness: 40,
stacked: true
}],
yAxes: [{
gridLines: {
display: true
},
stacked: true
}]
},
horizontalLine: [{
y: 50,
style: "rgba(255, 0, 0, .4)",
text: "max"
}, {
y: 15,
text: "min"
}]
}
};
;
var ctx = document.getElementById("canvas");
var horizonalLinePlugin = {
afterDraw: function (chartInstance) {
var yScale = chartInstance.scales["y-axis-0"];
var canvas = chartInstance.chart;
var ctx = canvas.ctx;
var index;
var line;
var style;
if (chartInstance.options.horizontalLine) {
for (index = 0; index < chartInstance.options.horizontalLine.length; index++) {
line = chartInstance.options.horizontalLine[index];
if (!line.style) {
style = "rgba(169,169,169, .6)";
} else {
style = line.style;
}
if (line.y) {
yValue = yScale.getPixelForValue(line.y);
} else {
yValue = 0;
}
ctx.lineWidth = 3;
if (yValue) {
ctx.beginPath();
ctx.moveTo(0, yValue);
ctx.lineTo(canvas.width, yValue);
ctx.strokeStyle = style;
ctx.stroke();
}
if (line.text) {
ctx.fillStyle = style;
ctx.fillText(line.text, 0, yValue + ctx.lineWidth);
}
}
return;
};
}
};
Chart.pluginService.register(horizonalLinePlugin);
var myChart = new Chart(ctx, config);
Try like this.
Chart.js do have mixed chart.
Docs :http://www.chartjs/docs/#chart-configuration-mixed-chart-types
var ctx = document.getElementById("myChart").getContext('2d');
var myChart = new Chart(ctx, {
type: 'bar',
data: {
labels: ['25', '60', '45'],
datasets: [
{
type: 'line',
label: 'Baseline',
data: [15, 15, 15 ]
},
{
type: 'bar',
label: 'Marks',
data: [25, 60, 45],
backgroundColor: [
'rgba(255, 99, 132, 1)',
'rgba(54, 162, 235, 1)',
'rgba(255, 206, 86, 1)'
]
}
]
},
options: {
scales: {
yAxes: [{
ticks: {
beginAtZero: true
}
}]
}
}
});
.container {
width: 80%;
margin: 15px auto;
}
<script src="https://cdnjs.cloudflare./ajax/libs/Chart.js/2.2.2/Chart.min.js"></script>
<div class="container">
<div>
<canvas id="myChart"></canvas>
</div>
</div>
本文标签: javascriptHow to draw baseline for bar chart in chartjsStack Overflow
版权声明:本文标题:javascript - How to draw baseline for bar chart in chart.js - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1745655611a2668692.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论