highcharts 高排行榜:如何在图表容器中添加或删除“图表上下文菜单”?

jyztefdp  于 2022-11-24  发布在  Highcharts
关注(0)|答案(2)|浏览(185)

highcharts中是否有任何属性可以用来删除使用javascript时出现在this柱形图中的图表上下文菜单(右边的菜单看起来像汉堡包菜单)?
这个选项是默认的highchart吗?我也有一个折线图,但是在那个折线图中没有默认的图表上下文菜单。另外,如果我想在那个折线图中添加一个图表上下文菜单,我该怎么做呢?

Highcharts.chart('container', {
  chart: {
    type: 'column',
    events: {
      load: function() {
        var series = this.series[0];
        setInterval(function() {
          newValue = Math.random() * 100;
          series.update({
            data: [newValue],
          }, true)
        }, 1000);
      }
    }
  },
  title: {
    text: 'Monthly Average Rainfall'
  },
  subtitle: {
    text: 'Source: WorldClimate.com'
  },
  xAxis: {
    categories: [
      'Jan'
    ],
    crosshair: true
  },
  yAxis: {
    min: 0,
    title: {
      text: 'Rainfall (mm)'
    }
  },
  tooltip: {
    headerFormat: '<span style="font-size:10px">{point.key}</span><table>',
    pointFormat: '<tr><td style="color:{series.color};padding:0">{series.name}: </td>' +
      '<td style="padding:0"><b>{point.y:.1f} mm</b></td></tr>',
    footerFormat: '</table>',
    shared: true,
    useHTML: true
  },
  plotOptions: {
    column: {
      pointPadding: 0.2,
      borderWidth: 0
    }
  },
  series: [{
    name: 'Tokyo',
    data: [49.9]

  }, {
    name: 'New York',
    data: [83.6]

  }, {
    name: 'London',
    data: [48.9]

  }, {
    name: 'Berlin',
    data: [42.4]

  }]
});
toe95027

toe950271#

仅包括<script src="https://code.highcharts.com/modules/exporting.js"></script>
您可以通过添加buttonOptions来启用或禁用它。默认值为true

Highcharts.chart('container', {
    navigation: {
        buttonOptions: {
            enabled: true
        }
    }
});

第一次

uemypmqf

uemypmqf2#

根据discussion禁用 highcharts 中的上下文菜单
右键菜单按钮来源于导出模块,不显示,不添加模块脚本:

<script src="https://code.highcharts.com/modules/exporting.js"></script>

(或)

我们可以通过使用javascript隐藏exporting.js中存在的highcharts-contextmenu类来禁用它

JQuery中的示例

$(".highcharts-contextmenu").hide()

为了在某些情况下启用它,我们可以反过来做

$(".highcharts-contextmenu").show()

相关问题