valueAxes: [
{
name: "A",
labels: {
visible: true,
template: temp("#= value #"),
color: "#888"
},
function temp(value){
return (value/1000) // in here i cant do any operation :(
}
我该怎么做这种操作?并且此操作值不会传递给我的函数。
答案 0 :(得分:0)
应该是
template: "#= temp(value) #"