jqplotのティックをどのようにフォーマットして、との間の変更を処理することができますか? ""地域に応じて ""と表示されます。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'
}
},
}
});
のように見えますドキュメントを介して私が探している必要があるキーワードを確認していない...任意の助けをいただければ幸いです
$ .jqplot.sprintf.thousandsSeparatorと $ .jqplot.sprintf.decimalMarkを設定するだけで、ドイツ語専用のページで解決できることがわかりました。どうもありがとう! – alfonx