我有一个函数,添加另一个轴和意甲动态图表。它过去在高图集3中工作得很好,后来我升级到了高图集4,但是它增加了轴,但没有添加意甲。
chart.addAxis({ // Secondary yAxis
id: tempId,
title: {
text: tempName
},
lineWidth: 2,
lineColor: serie.color,
opposite: opposition
});
var lbl = getLabelStatus_<?=$id?>(id);
chart.addSeries({
name: tempName,
type: serie.type,
color: serie.color,
yAxis: tempId,
data: serie.data,
dashStyle: serie.options.dashStyle,
dataLabels: {
enabled: lbl,
rotation: serie.options.dataLabels.rotation
}
});他们在v4中改变了关于轴的东西吗?我该如何解决这个问题?
发布于 2015-09-02 07:33:02
尝试;
data : serie.options.data,https://stackoverflow.com/questions/32327510
复制相似问题