0

ハイチャートを使用してPHPでグラフを作成しようとしています。棒グラフでプロジェクトの開始日 - 完了率を示す終了日を表示したいです。これらの値はすべてデータベースから取得しています。可能であればグラフに表示したい 4 番目の値は、プロジェクトが予定より遅れている場合に現在の日付を使用することです。

以下は私が持っているものです

var date = new Date();

//console.log(date.getFullYear() + " " + (date.getMonth()+1) + " " + date.getDay() );

$('#container').highcharts({
    chart: {
        type: 'spline'
    },
    title: {
        text: 'Snow depth in the Vikjafjellet mountain, Norway'
    },
    subtitle: {
        text: 'An example of irregular time data in Highcharts JS'
    },
    xAxis: {
        type: 'datetime',
        dateTimeLabelFormats: { // don't display the dummy year
            month: '%e. %b',
            year: '%b'
        }
    },
    yAxis: {
        title: {
            text: 'Percent %'
        },
        min: 0,
        max: 100
    },
    tooltip: {
        formatter: function() {
            var start = new Date(2013,5,11),
             end = new Date(2013,11,11),
            today = new Date();
                return  Math.round(100-((end - start) * 100 ) / today) + '%' ;//'<b>'+ this.series.name +'</b><br/>'+ Highcharts.dateFormat('%e. %b', this.x) +': '+ this.y +' m';
        }
    },

    series: [{
        name: 'Fastnet OffshWest Shetland',
        // Define the data points. All series have a dummy year
        // of 1970/71 in order to be compared on the same x axis. Note
        // that in JavaScript, months start at 0 for January, 1 for February etc.
        data: [
            [Date.UTC(2013,  5, 11), 0   ],
            [Date.UTC(date.getFullYear(), (date.getMonth()+1), date.getDay()), 30 ],
            [Date.UTC(2013, 11, 11), 100 ]
        ]
    }]
});

ここに画像の説明を入力

折れ線グラフを修正しました。これを、開始日と終了日を含む各プロジェクトを示す棒グラフに変換したいと考えています。および現在の完了率。また、現在の日付を使用して完了する必要がある予測パーセンテージを計算して表示したいと考えています。

4

1 に答える 1

1

私が理解しているように、 yAxisの実際の進捗率と、xAxis の開始日と終了日を示す棒グラフが必要です。

次のようにデータを渡すことができる columnrange チャートを使用します[value, timestamp1, timestamp2]

$('#container').highcharts({

    chart: {
        type: 'columnrange',
        inverted: true
    },
    xAxis: {
        min: -10,
        max : 110,
        tickInterval: 25,
        startOnTick: false,
        endOnTick: false,
        reversed: false
    },
    yAxis: {
        type: 'datetime'
    },
    plotOptions: {
        series: {
            pointWidth: 20
        }
    },
    series: [{
        name: 'Project 1',
        data: [
            [36, Date.UTC(2013,0,1),Date.UTC(2013,0,13)]
        ]
    }, {
        name: 'Project 2',
        data: [
            [66, Date.UTC(2013,0,1),Date.UTC(2013,0,10)]
        ]
    }, {
        name: 'Projec 3',
        data: [
            [100, Date.UTC(2013,0,1),Date.UTC(2013,0,3)]
        ]
    }]

});

ただ、予測値と計算値の部分がわかりません。Highcharts はデータを表示するためのライブラリであり、何かを予測するためのものではありません。

于 2013-06-20T12:23:56.113 に答える