Google图表-垂直轴分隔符/分隔符

时间:2019-12-15 03:07:06

标签: javascript charts google-visualization

我正在使用Google图表显示一个非常基本的水平条形图。

如何在vAxis上添加分隔符/分隔符?我玩过网格线,检查了文档(我可能在某处缺少它),但似乎找不到任何可以帮助您的东西。

我知道其他图表库也可以做到这一点,因为我之前已经做过,但是由于插件(这是用WordPress创建的),我被Google图表所困扰。

我需要什么:

enter image description here

我得到了什么

enter image description here

我应该使用图表的哪些选项,或者需要执行某种解决方法?任何帮助将不胜感激。

var options = {
    height:300 ,
    bar: { 
        groupWidth: '80%' 
    },
    backgroundColor: '#EEEEEE',
    isStacked: true,
    series: {
        1:{color:'#dfe8f2', opacity: 0.5}
    },
    hAxis: {
        baselineColor: 'none',
        ticks: []
    },
    vAxis: {
        baselineColor: 'none',
        ticks: [],
    },
    legend: { 
        position: 'none' 
    },
    tooltip : {
        trigger: 'none'
    }
};

0 个答案:

没有答案