我需要对grahp的X轴标签进行分组(并显示),但仍显示所有单个标签。
这是我实际使用的代码,它是一个普通的column2d图形:
FusionCharts.ready(function() {
var myChart = new FusionCharts({
type: "column2d",
renderAt: "chart",
width: "100%",
height: "100%",
dataFormat: "json",
dataSource: {
"chart": {
"animation": 0,
"caption": "Graph title",
"xAxisName": "Performance",
"baseFontColor": "#000000",
},
"data": [
{
"label": "351-08",
"value": "91"
},
{
"label": "351-09",
"value": "90"
},
{
"label": "351-10",
"value": "94"
},
{
"label": "351-01",
"value": "99"
},
{
"label": "351-07",
"value": "92"
},
{
"label": "351-06",
"value": "81"
},
],
"trendlines": [
{
"line": [
{
"startvalue": "82",
"color": "#ff3333",
"thickness": "5",
"valueOnRight": "1",
"displayvalue": "Average"
}
]
}
]
}
}).render();
});
我需要在X轴上显示另一个将标签分组的标签。
例如:
已更新
我附上了我需要的图像。
如您所见,我需要另一个将其他标签分组的标签行(“ Fattore1”,“ Fattore2”和“ Fattore3”)。