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.
- package/lib/umychart.vue.js +55 -49
- package/package.json +1 -1
- package/src/jscommon/umychart.NetworkFilterTest.js +3 -1
- package/src/jscommon/umychart.complier.js +19 -20
- package/src/jscommon/umychart.js +309 -129
- package/src/jscommon/umychart.testdata.js +3 -1
- package/src/jscommon/umychart.uniapp.h5/umychart.uniapp.h5.js +329 -150
- package/src/jscommon/umychart.version.js +1 -1
- package/src/jscommon/umychart.vue/umychart.NetworkFilterTest.vue.js +3 -1
- package/src/jscommon/umychart.vue/umychart.vue.js +329 -150
|
@@ -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:
|
|
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
|
|