我可以使用HighChart在StackedChart中隐藏图例名称吗?

时间:2018-04-13 13:13:50

标签: highcharts

我正在使用HighChart显示图表,我正在显示Stacked chart。我的问题是我不想显示HIBar名称,它通常显示在图表下以表示图表中显示的符号。

我附上了一张图片来描述我的查询:

enter image description here

在这里,我用黑色圆圈标记了我想隐藏的内容。我应该使用什么属性来隐藏图例?

2 个答案:

答案 0 :(得分:1)

圈出的区域就是传说,所以隐藏传奇就行了,就像这样:

legend: {
    enabled: false
},

工作示例: http://jsfiddle.net/ewolden/k3Lkh13k/

API: https://api.highcharts.com/highcharts/legend.enabled

答案 1 :(得分:0)

对于iOS Wrapper,根据文档添加/更新现有代码

#import <UIKit/UIKit.h>
#import <Highcharts/Highcharts.h>
@interface ViewController ()
@end
@implementation ViewController
- (void)viewDidLoad {
    [super viewDidLoad];

    HIChartView *chartView = [[HIChartView alloc] initWithFrame:self.view.bounds];

    HIOptions *options = [[HIOptions alloc]init];
    ........
     //remaining code here
    ........
    HILegend *legend = [[HILegend alloc]init];   //add this
    legend.enabled = [[NSNumber alloc] initWithBool:false];   //add this
    ........
     //remaining code here
    ........
    options.legend = legend;  //add this

    chartView.options = options;

    [self.view addSubview:chartView];
}

@end