我试图为Chart JS数据集添加额外的属性(对于Pie / Donut图表)。我在后端有一块Ruby,它将以下JSON打印到视图中:
[
{"segment": "undetermined",
"label": "Undetermined",
"value": 420193,"
color": "#DECF3F",
"highlight": "#e2d455"
},
{"segment":"peer_review",
"label":"Peer Review",
"value":415212,
"color":"#60BD68",
"highlight":"#72c479"
}
]
"段"属性是我希望在前端提供给我的JS的另一个属性(库不提供)。但是,当我将此JSON包装在canvas
标记中时,我无法通过JS访问它。
下面的第二行输出上面的JSON:
<canvas id="review-type" height="235" data-facet="review_status_s">
<%= @by_review_type %>
</canvas>
我正试图访问&#34;段&#34;使用getSegmentsAtEvent()
API调用(名称冲突意外)的属性:
$("#review-type").click(
function(evt) {
var activePoints = reviewChart.getSegmentsAtEvent(evt);
/* extract other properties, then build an URL from them: */
var url = "/" +locale+ "/catalog?f[" +facet_frag+ "][]=" +segment+ "&q=*:*";
window.location = url;
}
);
然而,当我在JS控制台中检查activePoints
时,&#34;段&#34;不在属性列表中。
我该怎么办?
答案 0 :(得分:1)
getSegmentsAtEvent
(以及其他图表类型的等价物)返回图表元素(扇区,点,条等)。您必须使用任何图表元素属性和数据对象来计算索引,然后使用它来获取所需的其他属性。
例如,如果pieData
是您的数据对象
$("#review-type").click(
function (evt) {
var activePoints = reviewChart.getSegmentsAtEvent(evt);
if (activePoints.length)
alert(pieData.filter(function (e) { return e.label === activePoints[0].label; })[0].segment);
...
您还可以在从对象传输到元素的属性上设置其他属性(例如label
),但这有点笨拙。