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
|
@@ -57422,13 +57422,14 @@ HQData.APIIndex_MULTI_POINT=function(data, callback)
|
|
|
57422
57422
|
BGColor:"rgb(255,215,0)",
|
|
57423
57423
|
PointRadius:10,
|
|
57424
57424
|
LineWidth:2,
|
|
57425
|
+
Name:"最低价",
|
|
57425
57426
|
Point:[ ]
|
|
57426
57427
|
};
|
|
57427
57428
|
|
|
57428
57429
|
for(var i=kData.Data.length-1, j=0; i>=0 && j<6; i-=5, ++j)
|
|
57429
57430
|
{
|
|
57430
57431
|
var item=kData.Data[i];
|
|
57431
|
-
point.Point.push({Date:item.Date, Time:item.Time, Value:
|
|
57432
|
+
point.Point.push({Date:item.Date, Time:item.Time, Value:"LOW"});
|
|
57432
57433
|
}
|
|
57433
57434
|
|
|
57434
57435
|
pointData.Draw.DrawData.push(point);
|
|
@@ -57440,6 +57441,7 @@ HQData.APIIndex_MULTI_POINT=function(data, callback)
|
|
|
57440
57441
|
BGColor:"rgb(30,144,255)",
|
|
57441
57442
|
PointRadius:5,
|
|
57442
57443
|
LineWidth:1,
|
|
57444
|
+
Name:"中间价",
|
|
57443
57445
|
Point:[ ]
|
|
57444
57446
|
};
|
|
57445
57447
|
|