我可以使用以下选项在Google饼图中爆炸第一个切片。
var options = {
title: 'My Daily Activities',
// set the slice threshold, slices below are all put in the 'Other' category.
sliceVisibilityThreshold: .015,
// explode the first (0) slice, I need to explode the 'Other' slice.
slices: { 0: { offset: 0.5 } },
is3D: true,
};
我的问题是如何找到爆炸的“其他”切片的索引?
我很乐意在绘制图表后以编程方式执行此操作。我试过-1和'其他',但这不起作用。
显然,一旦可视化API执行了阈值计算,就需要从图表中获取切片数量。
答案 0 :(得分:1)
遗憾的是,无法更改残留切片偏移量,或者至少在文档中没有这么说。可以选择更改pieResidueSliceLabel
和pieResidueSliceColor
,但不能更改pieResidueSliceOffset
你可以尝试使用sliceVisibilityThreshold
,它设置分组到其他切片的切片的阈值,但需要提出问题以获得pieResidueSliceOffset选项