hqchart 1.1.12804 → 1.1.12809
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 +3 -2
- package/package.json +1 -1
- package/src/jscommon/umychart.js +6 -0
- package/src/jscommon/umychart.testdata/if2206.cf.1minute.kline.js +287504 -0
- package/src/jscommon/umychart.uniapp.h5/umychart.uniapp.h5.js +7 -1
- package/src/jscommon/umychart.version.js +1 -1
- package/src/jscommon/umychart.vue/umychart.vue.js +7 -1
|
@@ -75873,6 +75873,12 @@ function KLineChartContainer(uielement,OffscreenElement)
|
|
|
75873
75873
|
|
|
75874
75874
|
if (!this.IsApiPeriod)
|
|
75875
75875
|
{
|
|
75876
|
+
if (bindData.Right>0 && this.RightFormula>=1) //复权
|
|
75877
|
+
{
|
|
75878
|
+
var rightData=bindData.GetRightData(bindData.Right, { AlgorithmType: this.RightFormula } );
|
|
75879
|
+
bindData.Data=rightData;
|
|
75880
|
+
}
|
|
75881
|
+
|
|
75876
75882
|
if (ChartData.IsDayPeriod(bindData.Period,false) || ChartData.IsMinutePeriod(bindData.Period,false)) //周期数据 (0= 日线,4=1分钟线 不需要处理)
|
|
75877
75883
|
{
|
|
75878
75884
|
var periodData=bindData.GetPeriodData(bindData.Period);
|
|
@@ -131669,7 +131675,7 @@ function ScrollBarBGChart()
|
|
|
131669
131675
|
|
|
131670
131676
|
|
|
131671
131677
|
|
|
131672
|
-
var HQCHART_VERSION="1.1.
|
|
131678
|
+
var HQCHART_VERSION="1.1.12808";
|
|
131673
131679
|
|
|
131674
131680
|
function PrintHQChartVersion()
|
|
131675
131681
|
{
|
|
@@ -75917,6 +75917,12 @@ function KLineChartContainer(uielement,OffscreenElement)
|
|
|
75917
75917
|
|
|
75918
75918
|
if (!this.IsApiPeriod)
|
|
75919
75919
|
{
|
|
75920
|
+
if (bindData.Right>0 && this.RightFormula>=1) //复权
|
|
75921
|
+
{
|
|
75922
|
+
var rightData=bindData.GetRightData(bindData.Right, { AlgorithmType: this.RightFormula } );
|
|
75923
|
+
bindData.Data=rightData;
|
|
75924
|
+
}
|
|
75925
|
+
|
|
75920
75926
|
if (ChartData.IsDayPeriod(bindData.Period,false) || ChartData.IsMinutePeriod(bindData.Period,false)) //周期数据 (0= 日线,4=1分钟线 不需要处理)
|
|
75921
75927
|
{
|
|
75922
75928
|
var periodData=bindData.GetPeriodData(bindData.Period);
|
|
@@ -131827,7 +131833,7 @@ function HQChartScriptWorker()
|
|
|
131827
131833
|
|
|
131828
131834
|
|
|
131829
131835
|
|
|
131830
|
-
var HQCHART_VERSION="1.1.
|
|
131836
|
+
var HQCHART_VERSION="1.1.12808";
|
|
131831
131837
|
|
|
131832
131838
|
function PrintHQChartVersion()
|
|
131833
131839
|
{
|