-1

I need to add commas in the data values to display from 123456 to 123,456. I have tried searching numerous forums and supports but I just don't understand what I need to do.

This is the current script code:

<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.min.js"></script>
<script type="text/javascript">
$(function () {

    $('#container').highcharts({
        chart: {
            type: 'line',
            marginRight: 130,
            marginBottom: 25
        },
        title: {
            text: 'Graph Title',
            x: -20 //center
        },
        subtitle: {
            text: 'Source: Name and site www.url.com',
            x: -20
        },
        xAxis: {
            categories: ['Jul-12', 'Aug-12', 'Sep-12', 'Oct-12', 'Nov-12', 'Dec-12',
                'Jan-13', 'Feb-13', 'Mar-13', 'Apr-13']
        },
        yAxis: {
            title: {
                text: 'Price'
            },
            plotLines: [{
                value: 0,
                width: 1,
                color: '#7c1440'
            }]
        },
        tooltip: {
            valueSuffix: ''
        },
        legend: {
            layout: 'vertical',
            align: 'right',
            verticalAlign: 'top',
            x: -10,
            y: 100,
            borderWidth: 0
        },
        series: [{
            name: 'HERC Index Value',
            data: [230570, 231055, 231055, 232325, 232914, 241636, 241748, 241748, 242330, 242633]

        }]
    });
});


</script>

I need the 'data:' values to display as: data: [230,570, 231,055, 231,055, 232,325, 232,914, 241,636, 241,748, 241,748, 242,330, 242,633].

4

3 に答える 3

3

これまでのところ、多くの答えは非常に複雑すぎるようです。

最終結果に何が必要かを明確にすることは、非常に役立ちます。

ただし、必要なのは、グラフが使用するデータ値のコンマではなく、データ ラベル、ツール ヒント、または軸ラベルに表示される書式設定された数値であることを提案します。

その場合は、表示に影響を与えたい領域に適切なフォーマッタを組み合わせて使用​​できます。

および numberFormat 関数:

http://api.highcharts.com/highcharts#Highcharts.numberFormat%28%29

あなたの必要性を誤解している場合は、明確にしてください。

于 2013-06-12T17:44:25.217 に答える