8

我正在尝试使用 jquery 切换图形类型。

我找到了使用以下函数动态更改图表类型(无需重新创建新图表)的方法:

series[i].update({ type: chartType});

我的第一个问题是:有没有办法改变所有图表而不仅仅是系列?如果不继续阅读:)

但是使用此功能,我无法使“条形”图表正常工作。它就像一个柱形图。正如你所看到的,饼图的例子是例外的。

酒吧:http ://www.highcharts.com/demo/bar-basic

它是如何工作的(示例):

<div id="top10_" style="float:left">
    <button id="set_column">column</button>
    <button id="set_bar">bar</button>
    <button id="set_pie">pie</button>
</div>
<div id="top10" style="min-width: 400px; height: 400px; margin: 0 auto;"></div>
$('#set_column').click(function () {
    var chart = $(this).parent('div').attr('id');
    chart = chart.replace('_', '');
    $('#' + chart).highcharts().series[0].update({
        type: "column"
    });
});
$('#set_bar').click(function () {
    var chart = $(this).parent('div').attr('id');
    chart = chart.replace('_', '');
    $('#' + chart).highcharts().series[0].update({
        type: "bar"
    });
});
$('#set_pie').click(function () {
    var chart = $(this).parent('div').attr('id');
    chart = chart.replace('_', '');
    $('#' + chart).highcharts().series[0].update({
        type: "pie"
    });
});

Highcharts 创建:

$('#top10').highcharts({
    chart: {
        type: 'column',
        margin: [50, 50, 100, 80]
    },
    title: {
        text: 'TOP10'
    },
    subtitle: {
        text: ' '
    },
    credits: {
        enabled: false
    },
    xAxis: {
        categories: ['1', '2', '3', '4'],
        labels: {
            rotation: -45,
            align: 'right',
            style: {
                fontSize: '13px',
                fontFamily: 'Verdana, sans-serif'
            }
        }
    },
    yAxis: {
        min: 0,
        title: {
            text: 'Ilość'
        }
    },
    legend: {
        enabled: false
    },
    tooltip: {
        formatter: function () {
            return '<b>' + this.x + '</b><br/>' + 'Ilość: ' + this.y;
        }
    },
    series: [{
        name: 'Ilość zgłoszeń, TOP10',
        data: [1, 2, 3, 43],
        dataLabels: {
            enabled: true,
            rotation: -90,
            color: '#FFFFFF',
            align: 'right',
            x: 4,
            y: 10,
            style: {
                fontSize: '13px',
                fontFamily: 'Verdana, sans-serif'
            }
        }
    }]
});

这是一个小提琴示例:http: //jsfiddle.net/supergg/zqvNq/4/

谢谢,

4

5 回答 5

12

您可以在图表中使用倒置参数并更新 yAxis。http://jsfiddle.net/n9xkR/8/

$('#bar').click(function () {


    chart.inverted = true;
    chart.xAxis[0].update({}, false);
    chart.yAxis[0].update({}, false);
    chart.series[0].update({
        type: 'column'
    });

});
于 2013-08-30T09:47:47.803 回答
3

这对我有用:

$.each(chart.series, function (key, series) {
    series.update(
        {type: 'bar'},
        false
    );
}
于 2015-12-04T20:05:39.787 回答
0

您可以在图表级别更新图表类型。由于您已在图表属性中设置类型,因此您需要更新相同的属性。

// Initializing Chart
let probChart = new Highcharts.Chart('container', {
  chart: { 
    type: "line"
  },
});

// Updating Chart Type
probChart.update({
  chart: { type: "column" }
});
于 2021-08-05T16:04:07.207 回答
0

这对我有用:

function changeType() {
  var series  = chart.series[0];
  var newType = your_condition_here ? 'column' : 'bar';
  var dataArray = [],
      points = series.data;

  series.chart.addSeries({
      type: newType,
      name: series.name,
      color: series.color,
      data: series.options.data
  }, false);
  series.remove();
}

它使用新类型创建新系列并删除旧系列。

根据需要免费添加更多选项。

希望它可以帮助某人:)

于 2019-06-24T02:34:51.377 回答
-2

不确定您是否找到答案,但我发现了一个对您 101% 有用的链接,即使供您将来参考。那你能看看吗。我正在寻找其他东西,我找到了这个链接,也得到了你的问题。

   [http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/members/series-update/][1]

如果这对您有任何帮助,请告诉我或接受我的回答。干杯:)

于 2015-07-30T06:00:32.150 回答