Android highchart 如何禁用导出按钮?

Android highchart how to disable export button?

我想禁用图表中的导出按钮。我尝试了以下 code.

HIChartView chartView = (HIChartView) findViewById(R.id.chartView);
chartView.options = new HIOptions();
chartView.options.exporting = new HIExporting();
chartView.options.exporting.enabled = false;

但是好像不行。

非常感谢任何帮助。

选项应分配给最后的图表。

示例:

HIOptions options = new HIOptions();
HIExporting exporting = new HIExporting();
exporting.setEnabled(false);
options.setExporting(exporting);
chartView.setOptions(options);