0
我想使用dygraphs JavaScript庫繪製堆疊圖表,我在下面做了這個。但是我想爲每條小節線添加不同的顏色。兩種顏色像在相同的光色在黑暗和底部欄頂部,這樣的:使用dygraph繪製堆疊圖表
請建議我如何可以通過不同的顏色dygraph。
這是我到目前爲止有:
function barChartPlotter(e) {
var ctx = e.drawingContext;
var points = e.points;
var y_bottom = e.dygraph.toDomYCoord(0); // see <a href="http://dygraphs.com/jsdoc/symbols/Dygraph.html#toDomYCoord">jsdoc</a>
// This should really be based on the minimum gap
var bar_width = 2/3 * (points[1].canvasx - points[0].canvasx);
ctx.fillStyle = e.color; // a lighter shade might be more aesthetically pleasing
// Do the actual plotting.
for (var i = 0; i < points.length; i++) {
var p = points[i];
var center_x = p.canvasx; // center of the bar
ctx.fillRect(center_x - bar_width/2, p.canvasy, bar_width, y_bottom - p.canvasy);
ctx.strokeRect(center_x - bar_width/2, p.canvasy, bar_width, y_bottom - p.canvasy);
}
}
g = new Dygraph(document.getElementById("graph"),
"X,Y\n" +
"1,2\n" +
"2,4\n" +
"3,6\n" +
"4,8\n" +
"5,10\n" +
"6,12\n" +
"7,14\n" +
"8,16\n", {
// options go here. See http://dygraphs.com/options.html
legend: 'always',
animatedZooms: true,
plotter: barChartPlotter,
dateWindow: [0, 9]
});
/*
Relevant CSS classes include:
Labels on the X & Y axes:
.dygraph-axis-label
.dygraph-axis-label-x
.dygraph-axis-label-y
.dygraph-axis-label-y2
Chart labels, see http://dygraphs.com/tests/styled-chart-labels.html
.dygraph-title
.dygraph-xlabel
.dygraph-ylabel
.dygraph-y2label
The legend, see http://dygraphs.com/tests/series-highlight.html
.dygraph-legend
*/
.dygraph-title {
color: gray;
}
<script src="//cdnjs.cloudflare.com/ajax/libs/mootools/1.4.5/mootools-core-full-compat.min.js"></script>
<script src="//dygraphs.com/dygraph-dev.js"></script>
<!-- You may set style: "width: ...; height: ..." to size the chart -->
<div id="graph"></div>
嗨Anil薩馬爾 - 感謝這看起來不錯,我們可以在一個酒吧有兩種顏色。就像在第一欄中添加了黃色;但是我實際上看到的是一半是深黃色,一半是淺黃色,如果有什麼辦法可以做到這一點對我來說是很有幫助的。謝謝 – pm86
是的,我們可以在一個酒吧有兩種顏色。讓我發佈代碼。 –
嗨帕雷什,請找到下面的代碼,它會給同一個酒吧兩種不同的顏色。 –