hqchart 1.1.14330 → 1.1.14340

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1890,13 +1890,14 @@ HQData.APIIndex_MULTI_POINT=function(data, callback)
1890
1890
  BGColor:"rgb(255,215,0)",
1891
1891
  PointRadius:10,
1892
1892
  LineWidth:2,
1893
+ Name:"最低价",
1893
1894
  Point:[ ]
1894
1895
  };
1895
1896
 
1896
1897
  for(var i=kData.Data.length-1, j=0; i>=0 && j<6; i-=5, ++j)
1897
1898
  {
1898
1899
  var item=kData.Data[i];
1899
- point.Point.push({Date:item.Date, Time:item.Time, Value:item.Low});
1900
+ point.Point.push({Date:item.Date, Time:item.Time, Value:"LOW"});
1900
1901
  }
1901
1902
 
1902
1903
  pointData.Draw.DrawData.push(point);
@@ -1908,6 +1909,7 @@ HQData.APIIndex_MULTI_POINT=function(data, callback)
1908
1909
  BGColor:"rgb(30,144,255)",
1909
1910
  PointRadius:5,
1910
1911
  LineWidth:1,
1912
+ Name:"中间价",
1911
1913
  Point:[ ]
1912
1914
  };
1913
1915