如何仅在AMStock图表的AMCharts中显示类别轴值

时间:2018-10-27 19:38:42

标签: amcharts amstock

我正在与amchart一起使用AMstock(旋转)构建带状图。

是否可以在面板上仅显示类别轴值? see sample screenshot here

我有2张图表。左侧应仅显示类别轴值。右侧显示带状图。

现在,我只能创建图表选项以仅显示类别轴值(双值)。

任何帮助将不胜感激。

1 个答案:

答案 0 :(得分:1)

我能够通过删除面板的股票图条目来解决此问题。

...
'panels': [
        {
          'showCategoryAxis': true,
          'title': 'Value',
          'percentHeight': 100,
          'lineThickness': 2,
          'autoMargins': true,
          'autoMarginOffset': 0,
          // as you can see, the stockGraphs is commented out.
          // 'stockGraphs': [{
          // }],
        }
      ],
...

希望这对某人有帮助。