我想用
创建一个图表我还有一个问题。 一个系列继续获得双轴标签。
var myAxes = {
dateRange: {
calculateEdgeOffset: true,
keys: ["date"],
position: "bottom",
type: "time",
labelFormat: "%e %b %Y",
styles: {
majorTicks: { display: "none" },
label: { rotation: -65, margin: { top: 5 } },
marker: { shape: "rect" },
line: { weight: 0 }
}
},
timestamp: {
keys: ["minutes"],
position: "left",
labelFunction: function (val) {
var display = padLeft(Math.floor(val / 60), 2, "0");
display += ":" + padLeft((val % 60), 2, "0");
return display;
}
}
};
“dateRange”很好,但“timestamp”会在左侧继续获取我自己的“labelFunction” - 重叠值并在右侧自动生成值。
答案 0 :(得分:0)
我最终离开了YUI图表并改为使用Google Charts - https://developers.google.com/chart/ - 这对我来说更容易合作。