我正在使用HighChart显示图表,我正在显示Stacked chart。我的问题是我不想显示HIBar名称,它通常显示在图表下以表示图表中显示的符号。
我附上了一张图片来描述我的查询:
在这里,我用黑色圆圈标记了我想隐藏的内容。我应该使用什么属性来隐藏图例?
答案 0 :(得分:1)
答案 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