SAy*_*tte 7 javascript chart.js
我想通过允许用户双击切片来向下钻取来使我的饼图交互.我相信这样做的方法是在画布上创建一个onclick处理程序,并用于getSegmentsAtEvent()确定单击了哪个切片.
调用返回的段数据getSegmentsAtEvent()可能不明确.以下是返回数据的示例:
[{
    "circumference": 4.1887902047863905,
    "endAngle": 8.901179185171081,
    "fillColor": "#FF5A5E",
    "highlightColor": "#FF5A5E",
    "innerRadius": 0,
    "label": "Red",
    "outerRadius": 99.5,
    "showStroke": true,
    "startAngle": 4.71238898038469,
    "strokeColor": "#fff",
    "strokeWidth": 2,
    "value": 300
}]
Run Code Online (Sandbox Code Playgroud)
这些领域中,只有value,fillColor,highlightColor,和label由我提供的,其中没有必然是独一无二的.我可以确保它label是独一无二的,但这可能会使人们的可读性降低.
我已经尝试在我传入的数据中添加一个额外的属性(例如"id")Pie(),但是当我从这个调用中获取段数据时它被剥离了.有没有办法为每个段添加一个属性,我可以使用它来确定它们,而不会使label字段超载?
您需要覆盖饼图或创建从饼图继承的新图表类型.
这是一个新图表类型的示例,我已经传递了一个名为id的新属性,然后在此图表中唯一需要不同的是,当添加数据时,此id需要传递给图表
Chart.types.Pie.extend({
    name: "PieUnique",
    addData: function (segment, atIndex, silent) {
        var index = atIndex || this.segments.length;
        this.segments.splice(index, 0, new this.SegmentArc({
            value: segment.value,
            outerRadius: (this.options.animateScale) ? 0 : this.outerRadius,
            innerRadius: (this.options.animateScale) ? 0 : (this.outerRadius / 100) * this.options.percentageInnerCutout,
            fillColor: segment.color,
            highlightColor: segment.highlight || segment.color,
            showStroke: this.options.segmentShowStroke,
            strokeWidth: this.options.segmentStrokeWidth,
            strokeColor: this.options.segmentStrokeColor,
            startAngle: Math.PI * this.options.startAngle,
            circumference: (this.options.animateRotate) ? 0 : this.calculateCircumference(segment.value),
            label: segment.label,
            //add option passed
            id: segment.id
        }));
        if (!silent) {
            this.reflow();
            this.update();
        }
    },
});
var pieData = [{
    value: 300,
    color: "#F7464A",
    highlight: "#FF5A5E",
    label: "Red",
    id: "1-upi"
}, {
    value: 50,
    color: "#46BFBD",
    highlight: "#5AD3D1",
    label: "Green",
    id: "2-upi"
}, {
    value: 100,
    color: "#FDB45C",
    highlight: "#FFC870",
    label: "Yellow",
    id: "3-upi"
}, {
    value: 40,
    color: "#949FB1",
    highlight: "#A8B3C5",
    label: "Grey",
    id: "4-upi"
}, {
    value: 120,
    color: "#4D5360",
    highlight: "#616774",
    label: "Dark Grey",
    id: "5-upi"
}
];
var ctx = document.getElementById("chart-area").getContext("2d");
window.myPie = new Chart(ctx).PieUnique(pieData);
document.getElementById("chart-area").onclick = function (evt) {
    var activePoints = window.myPie.getSegmentsAtEvent(evt);
    //you can now access the id at activePoints[0].id
    console.log(activePoints);
};Run Code Online (Sandbox Code Playgroud)
<script src="https://raw.githack.com/leighquince/Chart.js/master/Chart.js"></script>
<canvas id="chart-area" width="400"></canvas>Run Code Online (Sandbox Code Playgroud)