【问题标题】:highcharts draggabble pie in combo chart组合图中的 highcharts 可拖动饼图
【发布时间】:2013-12-18 04:22:40
【问题描述】:

下面的链接中有一个演示饼组合图。如何使饼图可拖动(拖放),使其有时不会覆盖图表的其他部分?

http://jsfiddle.net/gh/get/jquery/1.9.1/highslide-software/highcharts.com/tree/master/samples/highcharts/demo/combo/

$(function () {
    $('#container').highcharts({
        chart: {
        },
        title: {
            text: 'Combination chart'
        },
        xAxis: {
            categories: ['Apples', 'Oranges', 'Pears', 'Bananas', 'Plums']
        },
        tooltip: {
            formatter: function() {
                var s;
                if (this.point.name) { // the pie chart
                    s = ''+
                        this.point.name +': '+ this.y +' fruits';
                } else {
                    s = ''+
                        this.x  +': '+ this.y;
                }
                return s;
            }
        },
        labels: {
            items: [{
                html: 'Total fruit consumption',
                style: {
                    left: '40px',
                    top: '8px',
                    color: 'black'
                }
            }]
        },
        series: [{
            type: 'column',
            name: 'Jane',
            data: [3, 2, 1, 3, 4]
        }, {
            type: 'column',
            name: 'John',
            data: [2, 3, 5, 7, 6]
        }, {
            type: 'column',
            name: 'Joe',
            data: [4, 3, 3, 9, 0]
        }, {
            type: 'spline',
            name: 'Average',
            data: [3, 2.67, 3, 6.33, 3.33],
            marker: {
                lineWidth: 2,
                lineColor: Highcharts.getOptions().colors[3],
                fillColor: 'white'
            }
        }, {
            type: 'pie',
            name: 'Total consumption',
            data: [{
                name: 'Jane',
                y: 13,
                color: Highcharts.getOptions().colors[0] // Jane's color
            }, {
                name: 'John',
                y: 23,
                color: Highcharts.getOptions().colors[1] // John's color
            }, {
                name: 'Joe',
                y: 19,
                color: Highcharts.getOptions().colors[2] // Joe's color
            }],
            center: [100, 40],
            size: 100,
            showInLegend: false,
            dataLabels: {
                enabled: false
            }
        }]
    });
});

问候, 小玩意

【问题讨论】:

标签: highcharts


【解决方案1】:

最好的方法是将图表分成两部分 - 一个包含列/行/等,第二个作为饼图,将具有绝对位置,您需要做的就是添加拖放到饼容器。

【讨论】:

  • 我是 highcharts 的新手。是否有示例或链接来显示如何将拖放添加到饼容器?谢谢。
  • 我没有这样的例子,但它应该像简单的拖放(如 jQuery 拖放) - 只需将饼图制作为单个图表,将拖放添加到该饼图中,这应该是它。如果无法做到这一点 - 用你的尝试展示 jsFiddle,我会尽力提供帮助。
  • 我尝试使用jQuery拖放。它正在工作。谢谢。
【解决方案2】:

试试这个

$(".highcharts-series").draggable();

它会让你的所有系列都可以拖动

【讨论】:

    猜你喜欢
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    相关资源
    最近更新 更多