为什么Markers积分与Highcharts中的yAxis不一致?

时间:2016-09-30 11:45:53

标签: javascript jquery html charts highcharts

我制作了一个有两条不同线条的折线图,每条线在xAxis中与时间映射,但图中的点与yAxis不一致。标记中的值与tick选项完全不匹配。我不确定出了什么问题。如果在同一时间内有两个数据点,则会发生这种奇怪的行为。我不知道该怎么办?图像如下: -

enter image description here 代码可以在小提琴中找到http://jsfiddle.net/Cp73s/5394/ 配置和数据如下所述: -

  public async static Task<string> getSysFileJsonSendToServer(string studentName, string studentEmail, string studentPhoneNumber, string studentPassw)
            {
                DateTime dateTimeCurrent = await WebServiceManager.GetDateFromServer();
                DateTime localTime = dateTimeCurrent.ToLocalTime();
                string localDateTimeString = Utility.getFormatedDate(localTime);
                string finalJsonObjectToServer = string.Empty;
                try
                {

                    Stream serverStream = null;
                    string readData = string.Empty;
                    string msg = "Conected to Chat Server ...";
                    string concat= {"name":"studentName","phone":"studentPhoneNumber","mail_id":"studentEmail","studentPassw":"hkfgd","profile":"God","status":"1","created_at":"localDateTimeString"}
}

1 个答案:

答案 0 :(得分:1)

抱歉,我误读了您的帖子,指的是x轴。

plotOptions中,您指定:

"stacking": "normal"

您告诉图表将系列叠加在一起。

删除它,值会反映正确的y值: