gpt4 book ai didi

javascript - 谷歌图表 : Remove repetitive y axis

转载 作者:行者123 更新时间:2023-11-28 06:57:34 25 4
gpt4 key购买 nike

我正在使用谷歌图表,它工作得非常好,除了一件事,问题是当我选择自定义日期过滤器并从中仅选择单个日期时,它只会显示 1 strip 小点的记录,这也很好,没有问题但它的 y 轴显示重复值。

请检查示例: http://awesomescreenshot.com/0f757w8k3a

显示 0, 1, 1, 2, 2它应该显示 0, 1, 2, 3, 4 或仅显示 0, 1, 2

var options = {
vAxis: {
format: '#',
minValue: 0,
gridlines: {
color: 'transparent'
},
viewWindowMode: "explicit",
viewWindow:{ min: 0 }
},
hAxis: { textPosition: 'none' },
legend: { position: 'none' },
colors:[{color:'#A8D1FF', darker:'#97B9D8'}]
};

var chart = new google.visualization.AreaChart(document.getElementById('PostChart'));
chart.draw(PostChartData, options);

最佳答案

这可能是 Y 轴值范围较小的原因。尝试使用 vAxis 的 Ticks(通常称为 vAxis.ticks

)
vAxis: { ticks: [5,10,15,20] } //array
vAxis: { ticks: [{v:32, f:'thirty two'}, {v:64, f:'sixty four'}] } // A valid value as V
vAxis: { ticks: [new Date(2014,3,15), new Date(2013,5,15)] } // Dates

Click Here for Ref.

编辑1:如果您的记录值属于较小的范围,并且您将 vAxis 的最大值设置为较高的值,也可能会导致 vAxis 中出现重复值。

关于javascript - 谷歌图表 : Remove repetitive y axis,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32455470/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com