如何在每个铲斗元素整齐地放入自己的铲斗中时显示它们?
我无法按照我想要的方式显示直方图。 在第二个图片桶1和桶4中填充了1个元素,但元素显示在他们自己的桶之外(从1到4,从4到6)。
是否有一个选项属性可用于强制元素保留在自己的存储桶中?
正确的显示方式 Right way to display
错误的显示方式 Wrong way to display
下面是我给图表api提供的选项json,两个图表之间的唯一区别是块颜色和方向。既不影响元素大小(测试)。
options_json = {
"title": "Client Side Errors"
,"titlePosition": "none"
,"legend": { "position": "none" }
,"backgroundColor": background_color
,"chartArea": { "backgroundColor": chart_background_color, "width": "100%", "height": "100%" }
,"textColor": "white"
,"orientation": "vertical"
,"colors": [chart_colour]
,"vAxis": { "viewWindowMode": "pretty", "textColor": "transparent", "baselineColor": horizontal_gridline_color
, "gridlines": { "color": horizontal_gridline_color, "label": "horizontalline" } }
, "hAxis": { "ticks": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10], "direction": chart_orientation, "viewWindowMode": "pretty"
, "textColor": "transparent", "gridlines": { "max": 10, "color": vertical_gridline_color }
, "baselineColor": vertical_gridline_color}
, "histogram": { "bucketSize": 1, "minValue": 1, "maxValue": 6 }
, "bar": { }
}