4

JSONデータを返すコントローラークラスにメソッドがあります:

public ActionResult ChartDataJSON()
{
    Chart chart = new Chart();
    DataSet ds = dbLayer.GetChartData();
    DataTable dtChartData = ds.Tables[0];
    List<jqplotModel> chartData = new List<jqplotModel>();

    if (dtChartData .Rows.Count != 0)
    {
        foreach (DataRow row in dtChartData .Rows)
        {
            chartData.Add(new jqplotModel{ Date = DateTime.Parse(@row["Date"].ToString()), Demand= Convert.ToDouble(@row["Demand"].ToString()), Supply= Convert.ToDouble(@row["Supply"].ToString()) });
        }
    }
    return Json(chartData, JsonRequestBehavior.AllowGet);
}

スクリプトでそれを使用する方法を知っている人はいますか? これらの行で試しましたが、チャートが表示されません

<script type="text/javascript">
    $(document).ready(function () {
        var types = ['Demand', 'Supply'];               

        var rawData =  function (url, plot, options) {
            var ret = null;
            $.ajax({
                // have to use synchronous here, else the function
                // will return before the data is fetched
                async: false,
                url: url,
                dataType: "json",
                success: function (data) {
                    ret = data;
                }
            });
            return ret;
        };

        // The url for our json data
        var jsonurl = "/ChartController/ChartDataJSON";
        var plotData = []

        for (var i = 0; i < rawData.length; i++) {
            //Parse the date.
            var date = new Date(+rawData[i].Date.match(/\d+/));

            plotData[i] = [date, rawData[i].Demand];
        }

        var plotData2 = []

        for (var i = 0; i < rawData.length; i++) {
            //Parse the date.
            var date = new Date(+rawData[i].Date.match(/\d+/));

            plotData2[i] = [date, rawData[i].Supply];
        }

        var plot1 = $.jqplot('chart1', [plotData, plotData2], {
            height: 300,
            width: 300,
            title: 'Demand Supply',
            dataRenderer: rawData,
            dataRendererOptions: {
                unusedOptionalUrl: jsonurl
            },
            series: [
                    {},
                    { yaxis: 'y2axis' }
            ],
            axes: {
                xaxis: {
                    renderer: $.jqplot.DateAxisRenderer,
                    tickOptions: { formatString: '%#I %p' },
                    label: "Date",
                    tickInterval: '4 hour'
                },
                yaxis: {
                    label: "Demand",
                    labelRenderer: $.jqplot.CanvasAxisLabelRenderer

                },
                y2axis: {
                    label: "Supply",
                    labelRenderer: $.jqplot.CanvasAxisLabelRenderer
                }
            },
            highlighter: {
                show: true,
                sizeAdjust: 1
            },
            cursor: {
                show: false
            },
            legend: {
                show: true,
                labels: types,
                location: 'ne'
            }
        });

        $(window).bind('resize', function (event, ui) {
            if (plot1) {
                plot1.replot();
            }
        });
    });
</script>

これを実行すると、グラフが表示されず、ページに次のような長いテキストが表示されます。

[{"需要":4422.45,"供給":17660,"日付":"/Date(1236504600000)/","DateString":"3 PM"},{"需要":5019.27,"供給":20699, "Date":"/Date(1236508200000)/","DateString":"4 PM"},{"Demand":5030.35,"Supply":19917,"Date":"/Date(1236511800000)/"," DateString":"5 PM"},{"Demand":5172.35,"Supply":23597,"Date":"/Date(1236515400000)/","DateString":"6 PM"},{"Demand": 5656.51,"供給":21572,"日付":"/Date(1236519000000)/","DateString":"7 PM"},{"需要":4622.88,"供給":7794,"日付":"/日付(1236522600000)/","DateString":"8 PM"},{"Demand":3116.21,"Supply":3427,"Date":"/Date(1236526200000)/","DateString":"9 PM"},{"Demand":1588.83,"Supply ":1883,"Date":"/Date(1236529800000)/","DateString":"10 PM"},{"Demand":1394.15,"Supply":1403,"Date":"/Date(1236533400000) /","DateString":"11 PM"},{"Demand":1321.76,"Supply":3755,"Date":"/Date(1236537000000)/","DateString":"12 AM"},{ "Demand":1130.98,"Supply":3474,"Date":"/Date(1236540600000)/","DateString":"1 AM"},{"Demand":1277.1,"Supply":1072,"日付":"/Date(1236544200000)/","DateString":"2 AM"},{"Demand":1214.68,"Supply":1025,"Date":"/Date(1236547800000)/","DateString":"3 AM"},{"Demand":2117.91," Supply":1198,"Date":"/Date(1236551400000)/","DateString":"午前 4 時"},{"Demand":1658.97,"Supply":1485,"Date":"/Date(1236555000000 )/","日付文字列":"午前 5 時"},{"需要":1997.36,"供給":3126,"日付":"/日付(1236558600000)/","日付文字列":"午前 6 時"}, {"需要":2147.37,"供給":4785,"日付":"/Date(1236562200000)/","日付文字列":"午前 7 時"},{"需要":2114.13,"供給":5268,"日付":"/日付(1236565800000)/","DateString":"8 AM"},{"Demand":2389.84,"Supply":5264,"Date":"/Date(1236569400000)/","DateString":"9 AM"},{"Demand": 2240.77,"供給":5526,"日付":"/Date(1236573000000)/","DateString":"午前 10 時"},{"需要":1802.43,"供給":4530,"日付":"/ Date(1236576600000)/","DateString":"11 AM"},{"Demand":1929.71,"Supply":6618,"Date":"/Date(1236580200000)/","DateString":"12 PM "},{"Demand":545.65,"Supply":2767,"Date":"/Date(1236583800000)/","DateString":"1 PM"},{"Demand":0,"Supply": 1,"日付":"/日付(1236587400000)/","DateString":"2 PM"}]

問題と、どこで、何が間違っているのかを理解するのを手伝ってくれる人はいますか?

編集:データは動的であり、データベースから取得され、コントローラー クラスでコーディングすることにより、JSON スクリプトがビューに返されることに注意してください。jqPlot で (ChartDataJSON() メソッドから) JSON オブジェクトを渡す/使用する方法を提案してください。

4

3 に答える 3

3

わかりましたので、これが私の答えです。

私のコントローラーは次のとおりです。

public class jqPlotController : Controller
{    
    public ActionResult ChartDataJSON()
    {
        var chartData = new List<jqplotModel>();

        var point1 = new jqplotModel { Date = DateTime.Now.Date.ToString("yyyy-MM-dd h:mmtt"), Demand = Convert.ToDouble(1), Supply = Convert.ToDouble(3) };
        var point2 = new jqplotModel { Date = DateTime.Now.AddDays(10).Date.ToString("yyyy-MM-dd h:mmtt"), Demand = Convert.ToDouble(2), Supply = Convert.ToDouble(4) };
        var point3 = new jqplotModel { Date = DateTime.Now.AddDays(31).Date.ToString("yyyy-MM-dd h:mmtt"), Demand = Convert.ToDouble(6), Supply = Convert.ToDouble(6) };
        var point4 = new jqplotModel { Date = DateTime.Now.AddDays(106).Date.ToString("yyyy-MM-dd h:mmtt"), Demand = Convert.ToDouble(4), Supply = Convert.ToDouble(2) };
        chartData.Add(point1);
        chartData.Add(point2);
        chartData.Add(point3);
        chartData.Add(point4);

        return Json(chartData, JsonRequestBehavior.AllowGet);
    }

    //
    // GET: /jqPlot/

    public ActionResult Index()
    {
        return View();
    }
}

そしてモデル:

public class jqplotModel
{
 public string Date { get; set; }
 public double Demand { get; set; }
 public double Supply { get; set; }
}

ChartDataJSON メソッドで (非常に!) 単純なデータセットをハードコーディングしました。同様の形式でデータを出力するようにコードをリファクタリングするのは非常に簡単です。

私は jqPlot を初めて使用するので、DateTime オブジェクトをこの JavaScript ライブラリに渡す方法を理解するのにしばらく時間がかかりました。jqPlotを試すたびに、時間に関連するかなり不可解なエラーメッセージが表示されました。私が見つけた解決策は、jqPlot が理解できる日時としてフォーマットすることでした。 !

ビューは次のようになります。

<script src="@Url.Content("Scripts/jquery-1.8.2.min.js")" type="text/javascript"></script>
<script src="@Url.Content("Scripts/jqPlot/jquery.jqplot.js")"  type="text/javascript"></script>
<script src="@Url.Content("Scripts/jqPlot/plugins/jqplot.barRenderer.min.js")"  type="text/javascript"></script>
<script src="@Url.Content("Scripts/jqPlot/plugins/jqplot.categoryAxisRenderer.min.js")"  type="text/javascript"></script>
<script src="@Url.Content("Scripts/jqPlot/plugins/jqplot.dateAxisRenderer.min.js")"  type="text/javascript"></script>
<script src="@Url.Content("Scripts/jqPlot/plugins/jqplot.pointLabels.min.js")"  type="text/javascript"></script>
<script src="@Url.Content("Scripts/jqPlot/plugins/jqplot.canvasAxisTickRenderer.min.js")"  type="text/javascript"></script>
<script src="@Url.Content("Scripts/jqPlot/plugins/jqplot.highlighter.min.js")"  type="text/javascript"></script>

<script type="text/javascript">
    $(document).ready(function () {
        // The url for our json data
        var url = '@Url.Action("ChartDataJSON", "jqPlot")';

        var ret = null;
        $.ajax({
            // have to use synchronous here, else the function 
            // will return before the data is fetched
            async: false,
            url: url,
            dataType: "json",
            success: function (data) {
                ret = data;
            }
        });

        var demands = [];
        var supplys = [];

        for (i = 0; i < ret.length; i++) {
            // Save the data to the relevant array. Note how date at the zeroth position (i.e. x-axis) is common for both demand and supply arrays.
            demands.push([ret[i].Date, ret[i].Demand]);
            supplys.push([ret[i].Date, ret[i].Supply]);
        }

        var plot1 = $.jqplot('chart1', [demands, supplys], {
            title: "Demand Supply",
            axes: {
                xaxis: {
                    renderer: $.jqplot.DateAxisRenderer,
                    tickOptions: {
                        formatString: '%d/%m/%Y'
                    },

                    label: 'Date'
                },
                yaxis: {
                    label: 'Demand'
                },
                y2axis: {
                    label: 'Supply'
                }
            },
            series: [
                { yaxis: 'yaxis', label: 'demands' },
                { yaxis: 'y2axis', label: 'supplys' }
            ],
            highlighter: {
                show: true,
                sizeAdjust: 1
            },
            cursor: {
                show: false
            }
        });
    });
</script>

@{
    ViewBag.Title = "jQPlot Demo";
}

<h2>@ViewBag.Title</h2>
<div id="chart1" style="height: 400px; width: 600px;"></div>

私のソリューションでは、datarender オプションを使用しないことに注意してください。代わりに、jquery ajax 呼び出しを使用してデータを取得し、需要データと供給データ用に 2 つの別個の配列を作成します。これらの各配列には、x 軸に日付があり、y 軸にそれぞれの値があります (したがって、日付は明らかに両方の配列に共通です)。

このデータを取得したら、jqPlot を使用してプロットすると、次のグラフが得られます。

コードの実行時に生成されるグラフ

軸の目盛りとラベル付けを改良するにはまだ作業が必要ですが、うまくいけば、これはあなたが望む種類のグラフです。もしそうでなければ、それは確かに私にとって良い学習課題であり、他の人がこれを役に立つと思うことを願っています.

于 2013-10-21T00:15:57.087 に答える
1

これで問題が解決すると思います: JsFiddle リンク

  • rawDataajaxreply json オブジェクトを含む変数として宣言しました。次に、以下の変数を使用してグラフをプロットしました。

  • あなたのコードでは、すでにグラフにデータを提供しており、その中に dataRenderer が設定されていることがわかりました。それは正しくありません。DataRenderer の例

    $(document).ready(function () {
    

    var rawData = [{"Demand":4422.45,"Supply":17660,"Date":"/Date(1236504600000)/","DateString":"3 PM"},{"Demand":5019.27,"Supply" :20699,"日付":"/Date(1236508200000)/","DateString":"4 PM"},{"需要":5030.35,"供給":19917,"日付":"/Date(1236511800000)/ ","DateString":"5 PM"},{"Demand":5172.35,"Supply":23597,"Date":"/Date(1236515400000)/","DateString":"6 PM"},{" Demand":5656.51,"Supply":21572,"Date":"/Date(1236519000000)/","DateString":"7 PM"},{"Demand":4622.88,"Supply":7794,"Date" :"/日付(1236522600000)/","DateString":"8 PM"},{"Demand":3116.21,"Supply":3427,"Date":"/Date(1236526200000)/","DateString":"9 PM"},{"Demand": 1588.83,"供給":1883,"日付":"/Date(1236529800000)/","DateString":"午後 10 時"},{"需要":1394.15,"供給":1403,"日付":"/ Date(1236533400000)/","DateString":"11 PM"},{"Demand":1321.76,"Supply":3755,"Date":"/Date(1236537000000)/","DateString":"12 AM "},{"Demand":1130.98,"Supply":3474,"Date":"/Date(1236540600000)/","DateString":"1 AM"},{"Demand":1277.1,"Supply": 1072,"日付":"/日付(1236544200000)/","DateString":"2 AM"},{"Demand":1214.68,"Supply":1025,"Date":"/Date(1236547800000)/","DateString":"3 AM"},{"Demand" :2117.91,"供給":1198,"日付":"/Date(1236551400000)/","DateString":"午前 4 時"},{"需要":1658.97,"供給":1485,"日付":" /Date(1236555000000)/","DateString":"5 AM"},{"Demand":1997.36,"Supply":3126,"Date":"/Date(1236558600000)/","DateString":"6 AM"},{"Demand":2147.37,"Supply":4785,"Date":"/Date(1236562200000)/","DateString":"7 AM"},{"Demand":2114.13,"Supply" :5268,"日付":"/Date(1236565800000)/","DateString":"8 AM"},{"Demand":2389.84,"Supply":5264,"Date":"/Date(1236569400000)/","DateString":"9 AM"},{"Demand":2240.77,"Supply":5526,"Date":"/Date(1236573000000)/","DateString":"10 AM"},{"Demand":1802.43,"Supply" :4530,"日付":"/日付(1236576600000)/","日付文字列":"午前11時"},{"需要":1929.71,"供給":6618,"日付":"/日付(1236580200000)/ ","DateString":"12 PM"},{"Demand":545.65,"Supply":2767,"Date":"/Date(1236583800000)/","DateString":"1 PM"},{"需要":0,"供給":1,"日付":"/Date(1236587400000)/","DateString":"2 PM"}];

        var types = ['Demand', 'Supply'];               
    
        var plotData = []
    
        for (var i = 0; i < rawData.length; i++) {
            //Parse the date.
            var date = new Date(+rawData[i].Date.match(/\d+/));
    
            plotData[i] = [date, rawData[i].Demand];
        }
    
        var plotData2 = []
    
        for (var i = 0; i < rawData.length; i++) {
            //Parse the date.
            var date = new Date(+rawData[i].Date.match(/\d+/));
    
            plotData2[i] = [date, rawData[i].Supply];
        }
    
        var plot1 = $.jqplot('chart1', [plotData, plotData2], {
            height: 300,
            width: 300,
            title: 'Demand Supply',
            //dataRenderer: rawData,
            //dataRendererOptions: {
            //    unusedOptionalUrl: jsonurl
            //},
            series: [
                    {},
                    { yaxis: 'y2axis' }
            ],
            axes: {
                xaxis: {
                    renderer: $.jqplot.DateAxisRenderer,
                    tickOptions: { formatString: '%#I %p' },
                    label: "Date"
                    //,tickInterval: '4 Hr'
                },
                yaxis: {
                    label: "Demand"
                    //,labelRenderer: $.jqplot.CanvasAxisLabelRenderer
    
                },
                y2axis: {
                    label: "Supply"
                    //,labelRenderer: $.jqplot.CanvasAxisLabelRenderer
                }
            },
            highlighter: {
                show: true,
                sizeAdjust: 1
            },
            cursor: {
                show: false
            },
            legend: {
                show: true,
                labels: types,
                location: 'ne'
            }
        });
    
        $(window).bind('resize', function (event, ui) {
            if (plot1) {
                plot1.replot();
            }
        });
    
    });
    
于 2013-10-20T00:11:07.420 に答える
0

@ user1254053として、 @ Freshのソリューションの実装にも問題がありました。ChartDataJSON ビューで js コードを記述しようとしていました。つまり、ChartDataJSON() メソッドからのビューで、ビューの実行時にプレーン テキスト オブジェクトが出力されました。

次に、ビューコードを別のビュー、たとえばインデックスビュー、またはreturn(View)ステートメントだけを持つ他のビューに記述しようとしましたが、うまくいきました。

これが他の人に役立つことを願っています。手遅れにならないことを願っています。

于 2014-04-28T10:43:03.997 に答える