5

と の間の変更を処理するために jqplot の目盛りをフォーマットするにはどうすればよいですか。および " " は、私がいる地域によって異なります。

例えば。

  • ヨーロッパ - 1.000,00
  • 米国 - 1,000.00
  • その他 1 000,00

私の例のjqplotの初期化は次のようになります....

plot3 = $.jqplot('saturationChart', lineArray, 
         { 
          title:m_Language.saturationChartName,
          series:lineColor,
          legend:{show:true, location:'se'},
          // You can specify options for all axes on the plot at once with
          // the axesDefaults object.  Here, we're using a canvas renderer
          // to draw the axis label which allows rotated text.
          axes:{
            xaxis:{
//            label:'Minutes',
              renderer: $.jqplot.LogAxisRenderer,
              tickDistribution:'power',
              labelRenderer: $.jqplot.CanvasAxisLabelRenderer,
              labelOptions: {
                //fontSize: '12pt'
              },
            },
            yaxis:{
//            label:'Megaohms',
              renderer: $.jqplot.LogAxisRenderer,
              tickDistribution:'power',
              labelRenderer: $.jqplot.CanvasAxisLabelRenderer,
              labelOptions: {
                //fontSize: '12pt'
              }
            },
          }
      });

ドキュメントに目を通しましたが、どのキーワードを探す必要があるのか​​ わかりません...助けていただければ幸いです

4

1 に答える 1