我有一个WebService返回一个Chart列表。这是我的类图的结构:

public class Point
{
    public string Date { get; set; }
    public float Value { get; set; }
}

public class Serie
{
    public string Port { get; set; }
    public string Name { get; set; }
    public string Unit { get; set; }
    public List<Point> Data { get; set; }
}

public class Chart
{
    public string Unit { get; set; }

    public List<Serie> Series { get; set; }
}

public List<Chart> charts;


我在js脚本中使用HighStock来显示图表列表中的所有图表。
我想按单元对我的系列进行分组,并为每个单元创建一个新的yAxis以显示相同的单元系列(请参见下图)。

这是来自js文件的代码:

<script type="text/javascript">
    $(document).ready(function () {
        $.ajax({
            type: "POST",
            contentType: "application/json; charset=utf-8",
            url: "WebService.asmx/Channels",
            data: "{}",
            dataType: "json",
            success: function (Charts) {
                document.getElementById("debug").innerHTML = Charts.d;
                Charts = Charts.d;

                var margin = 40,
                top = 100,
                height = 160,
                count = 0;

                // Generals options for chart
                var options = {
                    credits: { enabled: false },
                    chart: {
                        renderTo: chart,
                        zoomType: 'x',
                        alignTicks: false
                    },
                    legend: {
                        enabled: true
                    },
                    title: {
                        text: 'Values'
                    },
                    tooltip: {
                        valueDecimals: 2,
                        shared: true
                    },
                    xAxis: {
                        ordinal: false
                    },
                    yAxis: [],
                    series: []
                };

                // Go through Charts
                for (var i in Charts) {

                        // Infos for the yAxis of the serie
                        // -------------------
                        options.yAxis.push({
                            title: {
                                text: "[" + Charts[i].Unit + "]"
                            },
                            labels: {
                                x: 30,
                                y: 4,
                                align: "right",
                                format: '{value} ' + Charts[i].Unit
                            },
                            offset: 0,
                            top: top,
                            height: height,
                            opposite: true
                        });

                        // Go through Series in a Charts
                        for (var j in Charts[i].Series) {


                            // Infos for the serie
                            // -------------------
                            var data = [];

                            // Go through Data in Series of a Charts
                            for (var k in Charts[i].Series[j].Data) {
                                var point = new Array(new Date(Charts[i].Series[j].Data[k].Date).getTime(), Charts[i].Series[j].Data[k].Value);
                                data.push(point);
                            }// End: Go through Data in Series of a Charts

                            count = Number(i);

                            // Add a serie and these attributes
                            options.series.push({
                                name: Charts[i].Series[j].Name,
                                data: data,
                                tooltip: {
                                    valueSuffix: ' ' + Charts[i].Series[j].Unit,
                                    valueDecimals: 3
                                },
                                yAxis: count
                            });

                        }// End: Go through Series in a Charts

                        count++;
                        top += height + margin;

                }// End: Go through Charts

                options.chart.height = top + 190;

                Highcharts.StockChart(options);
            },
            error: function (xhr, thrownError) {
                //alert("Error : " + xhr.status + "\nMessage : \n" + xhr.responseText);
                document.getElementById("debug").innerHTML = "Error : " + xhr.status + "\nMessage : \n" + xhr.responseText;
            }
        });
    });
</script>


如果我运行代码:

Blank page no chart

我的错误是:


  未捕获的TypeError:无法读取未定义的属性'clientX'-> highstock.js:177


并且(有时)出现此错误:


  Uncaught TypeError:无法读取未定义的属性'info'-> highstock.js:342(关于#line而言不是这样)


如果我以不同的间隔删除该序列,或者取消选择Vbatt序列(具有不同间隔的序列),它将起作用:

All my charts are displayed

我花了很多时间在互联网和StackOverflow上寻找问题的答案,但是……什么都没有。

编辑:

->我们可以在同一张图表上绘制的最大系列是多少?
->我们可以在同一张图表上绘制的最高点是多少?

预先感谢您的反馈。

最好的祝福,

史蒂夫

问题解决了!

问题是我的Web服务发送的纪元数据以秒为单位,HighStock需要毫秒数。

最佳答案

问题解决了!

问题是我的Web服务发送的纪元数据以秒为单位,HighStock需要毫秒数。

关于javascript - 高库存不同时间值间隔,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/35653476/

10-11 13:32