我正在使用 dygraphs 库 (http://dygraphs.com),我想知道是否有办法让我指定如何绘制 y 轴。
我的数据如下所示(我从 CSV 文件加载它):
日期,统计 20121029,13 20121030,14 20121031,1 20121101,0 20121102,7 20121103,0 20121104,7
这就是我的 JS 的样子:
<script type="text/javascript">
g3 = new Dygraph(
document.getElementById("divGraph2"),
"<?php echo $csvstats;?>",
{ interactionModel: {}, labels: [ " ", " "], strokeWidth: 3, showLabelsOnHighlight:false,axes: {x:{axisLabelFormatter: function(x){return "";}, valueFormatter: function(s) {return "";}}, y:{axisLabelFormatter: function(y){return "";}, valueFormatter: function(y) {return "";}}} });
</script>
目前,图表显示为 y 轴,将数据显示为每日数据。
我想在 y 轴上显示数据,如下所示:
20121029 - 13 20121030 - 27 20121031 - 28 20121101 - 28 20121102 - 35 20121103 - 35 20121104 - 42
我可以使用 dygraphs 中的任何选项来执行此操作吗?我无法更改输入 CSV 文件的格式。
谢谢