2016-07-29 50 views
0

我正在嘗試使用自定義的y-作爲我的劍道圖。這是功能。劍道圖上的參考錯誤

function FormatLongNumber(value) { 
    if(value == 0) { 
    return 0; 
    } 
    else 
    { 
     // for testing 
     //value = Math.floor(Math.random()*1001); 

     // hundreds 
     if(value <= 999){ 
     return value; 
     } 
     // thousands 
     else if(value >= 1000 && value <= 999999){ 
     return (value/1000) + 'K'; 
     } 
     // millions 
     else if(value >= 1000000 && value <= 999999999){ 
     return (value/1000000) + 'M'; 
     } 
     // billions 
     else if(value >= 1000000000 && value <= 999999999999){ 
     return (value/1000000000) + 'B'; 
     } 
     else 
     return value; 
    } 
} 

而當我想用這個對我的劍道圖我用這個:

valueAxis: { 
     labels: { 
      visible: true, 
      //format: ValueAxisLabelsFormat, 
      template: "#= FormatLongNumber(value) #" 
     } 
    }, 

當我運行的應用程序,我碰到下面的錯誤。

ReferenceError: FormatLongNumber is not defined 

我在做什麼錯?

+0

函數FormatLongNumber定義在角度範圍內還是外部? – Philipp

+0

超出範圍先生是否定義了函數activate(){} – Fearcoder

回答