Google柱形图中的标签对齐方式

时间:2014-12-17 10:52:31

标签: javascript google-visualization keen-io

我在尝试更改此Google ColumnChart中标签的位置时遇到问题。该图表通过Keen.io JS SDK呈现。我的工作空间非常紧张,我试图将标签放在图表下方,而不是放在右侧(标签文本被截断的位置)。这是一个截图 -

graph

我已在下面添加了我的配置对象。我是否有一个选项缺失 - 似乎没有任何东西可以从右侧移动标签。感谢。

{
            chartType: 'columnchart',
            chartOptions: {
                isStacked: true
            },
            fontName : 'Helvetica',
            fontSize : '11px',
            width : 270,
            height : 220,
            chartArea : {
                left : 0,
                top : 0,
                width : '100%',
                height : '100%'
            },
            colors : ['#abdd99', '#8dc7d9', '#eeeeee'],
            colorMapping : {
                'pro' : '#abdd99',
                'basic' : '#8dc7d9'
            },
            labelMapping: {
                "basic": "BASIC",
                "pro": "PRO"
            },
            title : 'PROFILE VIEWS',
            vAxis : {
                viewWindowMode : 'maximized',
                gridlines : { color : '#eeeeee' },
                baselineColor : '#eeeeee',
                textPosition : 'none'
            },
            hAxis : {
                viewWindowMode : 'maximized',
                gridlines : {
                    color : '#eeeeee'
                },
                baselineColor : '#eeeeee',
                textPosition : 'none'
            },
            legend : {
                position : 'bottom',
                textStyle : {
                    color : '#cccccc',
                    fontName : 'Helvetica',
                    fontSize : '11px'
                }
            }
        }

1 个答案:

答案 0 :(得分:2)

所有这些特定于Google的配置都应该包含在chartOptions对象中。尝试一下,让我知道它是怎么回事:

{
  chartType: 'columnchart',
  chartOptions: {
    fontName : 'Helvetica',
    fontSize : '11px',
    isStacked: true,
    chartArea : {
      left : 0,
      top : 0,
      width : '100%',
      height : '100%'
    },
    vAxis : {
      viewWindowMode : 'maximized',
      gridlines : { color : '#eeeeee' },
      baselineColor : '#eeeeee',
      textPosition : 'none'
    },
    hAxis : {
      viewWindowMode : 'maximized',
      gridlines : {
        color : '#eeeeee'
      },
      baselineColor : '#eeeeee',
      textPosition : 'none'
    },
    legend : {
      position : 'bottom',
      textStyle : {
        color : '#cccccc',
        fontName : 'Helvetica',
        fontSize : '11px'
      }
    }
  },
  width : 270,
  height : 220,
  colors : ['#abdd99', '#8dc7d9', '#eeeeee'],
  colorMapping : {
    'pro' : '#abdd99',
    'basic' : '#8dc7d9'
  },
  labelMapping: {
    "basic": "BASIC",
    "pro": "PRO"
  },
  title : 'PROFILE VIEWS'
}

更新:您可能还喜欢使用C3.js更多..我们在v3.1中添加了一个C3适配器。这是一个演示如何使用它的jsFiddle:http://jsfiddle.net/keen/0mL925vr/