hqchart 1.1.13014 → 1.1.13016
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/package.json
CHANGED
package/src/jscommon/umychart.js
CHANGED
|
@@ -52403,6 +52403,7 @@ function IChartDrawPicture()
|
|
|
52403
52403
|
|
|
52404
52404
|
this.IsDrawFirst=false;
|
|
52405
52405
|
this.IsShowYCoordinate=false; //是否在Y轴显示点的刻度
|
|
52406
|
+
this.IsShow=true; //是否显示
|
|
52406
52407
|
|
|
52407
52408
|
this.LineColor=g_JSChartResource.DrawPicture.LineColor[0]; //线段颜色
|
|
52408
52409
|
//this.LineColor="#1e90ff"; //线段颜色,input type="color" 不支持rgb和rgba 的格式
|
|
@@ -53472,6 +53473,8 @@ function IChartDrawPicture()
|
|
|
53472
53473
|
this.GetXYCoordinate_default=function()
|
|
53473
53474
|
{
|
|
53474
53475
|
if (this.IsFrameMinSize()) return null;
|
|
53476
|
+
if (!this.IsShow) return null;
|
|
53477
|
+
|
|
53475
53478
|
var drawPoint=this.CalculateDrawPoint( {IsCheckX:true, IsCheckY:true} );
|
|
53476
53479
|
|
|
53477
53480
|
return this.PointRange(drawPoint);
|
|
@@ -53927,6 +53930,7 @@ function ChartDrawPictureLine()
|
|
|
53927
53930
|
{
|
|
53928
53931
|
this.LinePoint=[];
|
|
53929
53932
|
if (this.IsFrameMinSize()) return;
|
|
53933
|
+
if (!this.IsShow) return;
|
|
53930
53934
|
|
|
53931
53935
|
var drawPoint=this.CalculateDrawPoint( {IsCheckX:true, IsCheckY:true} );
|
|
53932
53936
|
if (!drawPoint) return;
|
|
@@ -53964,6 +53968,7 @@ function ChartDrawPictureLine()
|
|
|
53964
53968
|
this.GetYCoordinatePoint=function()
|
|
53965
53969
|
{
|
|
53966
53970
|
if (this.IsFrameMinSize()) return null;
|
|
53971
|
+
if (!this.IsShow) return null;
|
|
53967
53972
|
|
|
53968
53973
|
if (this.Status<2) return null;
|
|
53969
53974
|
if(!this.Point.length || !this.Frame) return null;
|
|
@@ -54126,6 +54131,7 @@ function ChartDrawGraffitiLine()
|
|
|
54126
54131
|
{
|
|
54127
54132
|
this.LinePoint=[];
|
|
54128
54133
|
if (this.IsFrameMinSize()) return;
|
|
54134
|
+
if (!this.IsShow) return;
|
|
54129
54135
|
|
|
54130
54136
|
var drawPoint=this.CalculateDrawPoint( {IsCheckX:true, IsCheckY:true} );
|
|
54131
54137
|
if (!drawPoint) return;
|
|
@@ -54181,6 +54187,7 @@ function ChartDrawArrowLine()
|
|
|
54181
54187
|
{
|
|
54182
54188
|
this.LinePoint=[];
|
|
54183
54189
|
if (this.IsFrameMinSize()) return;
|
|
54190
|
+
if (!this.IsShow) return;
|
|
54184
54191
|
|
|
54185
54192
|
var drawPoint=this.CalculateDrawPoint( {IsCheckX:true, IsCheckY:true} );
|
|
54186
54193
|
if (!drawPoint) return;
|
|
@@ -54299,6 +54306,7 @@ function ChartDrawPictureHaflLine()
|
|
|
54299
54306
|
this.LinePoint=[];
|
|
54300
54307
|
this.FullLine=null;
|
|
54301
54308
|
if (this.IsFrameMinSize()) return;
|
|
54309
|
+
if (!this.IsShow) return;
|
|
54302
54310
|
|
|
54303
54311
|
var drawPoint=this.CalculateDrawPoint({IsCheckX:false, IsCheckY:false});
|
|
54304
54312
|
if (!drawPoint || drawPoint.length!=2) return;
|
|
@@ -54377,6 +54385,7 @@ function ChartDrawPictureHorizontalLine()
|
|
|
54377
54385
|
{
|
|
54378
54386
|
this.LinePoint=[];
|
|
54379
54387
|
if (this.IsFrameMinSize()) return;
|
|
54388
|
+
if (!this.IsShow) return;
|
|
54380
54389
|
|
|
54381
54390
|
var drawPoint=this.CalculateDrawPoint();
|
|
54382
54391
|
if (!drawPoint || drawPoint.length!=1) return;
|
|
@@ -54633,6 +54642,7 @@ function ChartDrawHLine()
|
|
|
54633
54642
|
this.ButtonBGWidth=0;
|
|
54634
54643
|
|
|
54635
54644
|
if (this.IsFrameMinSize()) return;
|
|
54645
|
+
if (!this.IsShow) return;
|
|
54636
54646
|
|
|
54637
54647
|
var drawPoint=this.CalculateDrawPoint();
|
|
54638
54648
|
if (!drawPoint || drawPoint.length!=1) return;
|
|
@@ -55030,6 +55040,7 @@ function ChartDrawPictureTrendLine()
|
|
|
55030
55040
|
{
|
|
55031
55041
|
this.LinePoint=[];
|
|
55032
55042
|
if (this.IsFrameMinSize()) return;
|
|
55043
|
+
if (!this.IsShow) return;
|
|
55033
55044
|
|
|
55034
55045
|
var drawPoint=this.CalculateDrawPoint({IsCheckX:false, IsCheckY:false});
|
|
55035
55046
|
if (!drawPoint || drawPoint.length!=2) return;
|
|
@@ -55072,6 +55083,7 @@ function ChartDrawPictureRect()
|
|
|
55072
55083
|
this.Draw=function()
|
|
55073
55084
|
{
|
|
55074
55085
|
if (this.IsFrameMinSize()) return;
|
|
55086
|
+
if (!this.IsShow) return;
|
|
55075
55087
|
|
|
55076
55088
|
var drawPoint=this.CalculateDrawPoint({IsCheckX:true, IsCheckY:true});
|
|
55077
55089
|
if (!drawPoint || drawPoint.length!=2) return;
|
|
@@ -55183,6 +55195,7 @@ function ChartDrawPictureArc()
|
|
|
55183
55195
|
this.Draw=function()
|
|
55184
55196
|
{
|
|
55185
55197
|
if (this.IsFrameMinSize()) return;
|
|
55198
|
+
if (!this.IsShow) return;
|
|
55186
55199
|
|
|
55187
55200
|
var drawPoint=this.CalculateDrawPoint();
|
|
55188
55201
|
if (!drawPoint || drawPoint.length!=2) return;
|
|
@@ -55414,6 +55427,7 @@ function ChartDrawPictureWaveMW()
|
|
|
55414
55427
|
this.LinePoint=[];
|
|
55415
55428
|
if (!this.Frame) return;
|
|
55416
55429
|
if (this.IsFrameMinSize()) return;
|
|
55430
|
+
if (!this.IsShow) return;
|
|
55417
55431
|
|
|
55418
55432
|
this.IsHScreen=this.Frame.IsHScreen;
|
|
55419
55433
|
var drawPoint=this.CalculateDrawPoint({IsCheckX:true, IsCheckY:true});
|
|
@@ -55712,6 +55726,7 @@ function ChartDrawPictureParallelLines()
|
|
|
55712
55726
|
this.LinePoint=[];
|
|
55713
55727
|
this.CenterLine.Line=null;
|
|
55714
55728
|
if (this.IsFrameMinSize()) return;
|
|
55729
|
+
if (!this.IsShow) return;
|
|
55715
55730
|
|
|
55716
55731
|
var drawPoint=this.CalculateDrawPoint({IsCheckX:false, IsCheckY:false}); //不检测x,y
|
|
55717
55732
|
if (!drawPoint) return;
|
|
@@ -55825,6 +55840,7 @@ function ChartDrawFlatTop()
|
|
|
55825
55840
|
{
|
|
55826
55841
|
this.LinePoint=[];
|
|
55827
55842
|
if (this.IsFrameMinSize()) return;
|
|
55843
|
+
if (!this.IsShow) return;
|
|
55828
55844
|
|
|
55829
55845
|
var drawPoint=this.CalculateDrawPoint({IsCheckX:true, IsCheckY:true});
|
|
55830
55846
|
if (!drawPoint) return;
|
|
@@ -56177,6 +56193,7 @@ function ChartDrawPictureParallelChannel()
|
|
|
56177
56193
|
{
|
|
56178
56194
|
this.LinePoint=[];
|
|
56179
56195
|
if (this.IsFrameMinSize()) return;
|
|
56196
|
+
if (!this.IsShow) return;
|
|
56180
56197
|
|
|
56181
56198
|
var drawPoint=this.CalculateDrawPoint();
|
|
56182
56199
|
if (!drawPoint) return;
|
|
@@ -56327,6 +56344,7 @@ function ChartDrawPictureText()
|
|
|
56327
56344
|
{
|
|
56328
56345
|
this.TextRect=null;
|
|
56329
56346
|
if (this.IsFrameMinSize()) return;
|
|
56347
|
+
if (!this.IsShow) return;
|
|
56330
56348
|
|
|
56331
56349
|
var drawPoint=this.CalculateDrawPoint({IsCheckX:true, IsCheckY:true});
|
|
56332
56350
|
if (!drawPoint || drawPoint.length!=1) return;
|
|
@@ -56430,6 +56448,7 @@ function ChartDrawPictureIconFont()
|
|
|
56430
56448
|
{
|
|
56431
56449
|
this.TextRect=null;
|
|
56432
56450
|
if (this.IsFrameMinSize()) return;
|
|
56451
|
+
if (!this.IsShow) return;
|
|
56433
56452
|
|
|
56434
56453
|
var drawPoint=this.CalculateDrawPoint({IsCheckX:true, IsCheckY:true});
|
|
56435
56454
|
if (!drawPoint || drawPoint.length!=1) return;
|
|
@@ -56528,6 +56547,7 @@ function ChartDrawPictureGannFan()
|
|
|
56528
56547
|
{
|
|
56529
56548
|
this.LinePoint=[];
|
|
56530
56549
|
if (this.IsFrameMinSize()) return;
|
|
56550
|
+
if (!this.IsShow) return;
|
|
56531
56551
|
|
|
56532
56552
|
var drawPoint=this.CalculateDrawPoint({IsCheckX:true, IsCheckY:true});
|
|
56533
56553
|
if (!drawPoint) return;
|
|
@@ -56839,6 +56859,7 @@ function ChartDrawPictureGoldenSection()
|
|
|
56839
56859
|
{
|
|
56840
56860
|
this.LinePoint=[];
|
|
56841
56861
|
if (this.IsFrameMinSize()) return;
|
|
56862
|
+
if (!this.IsShow) return;
|
|
56842
56863
|
|
|
56843
56864
|
var drawPoint=this.CalculateDrawPoint();
|
|
56844
56865
|
if (!drawPoint) return;
|
|
@@ -57016,6 +57037,7 @@ function ChartDrawPictureTriangle()
|
|
|
57016
57037
|
{
|
|
57017
57038
|
this.LinePoint=[];
|
|
57018
57039
|
if (this.IsFrameMinSize()) return;
|
|
57040
|
+
if (!this.IsShow) return;
|
|
57019
57041
|
|
|
57020
57042
|
var drawPoint=this.CalculateDrawPoint({IsCheckX:true, IsCheckY:true});
|
|
57021
57043
|
if (!drawPoint) return;
|
|
@@ -57135,6 +57157,7 @@ function ChartDrawPictureSymmetryAngle()
|
|
|
57135
57157
|
{
|
|
57136
57158
|
this.LinePoint=[];
|
|
57137
57159
|
if (this.IsFrameMinSize()) return;
|
|
57160
|
+
if (!this.IsShow) return;
|
|
57138
57161
|
|
|
57139
57162
|
var drawPoint=this.CalculateDrawPoint({IsCheckX:true, IsCheckY:true});
|
|
57140
57163
|
if (!drawPoint) return;
|
|
@@ -57229,6 +57252,7 @@ function ChartDrawPictureCircle()
|
|
|
57229
57252
|
{
|
|
57230
57253
|
this.LinePoint=[];
|
|
57231
57254
|
if (this.IsFrameMinSize()) return;
|
|
57255
|
+
if (!this.IsShow) return;
|
|
57232
57256
|
|
|
57233
57257
|
var drawPoint=this.CalculateDrawPoint({IsCheckX:true, IsCheckY:true});
|
|
57234
57258
|
if (!drawPoint || drawPoint.length!=2) return;
|
|
@@ -57292,6 +57316,7 @@ function ChartDrawPictureQuadrangle()
|
|
|
57292
57316
|
{
|
|
57293
57317
|
this.LinePoint=[];
|
|
57294
57318
|
if (this.IsFrameMinSize()) return;
|
|
57319
|
+
if (!this.IsShow) return;
|
|
57295
57320
|
|
|
57296
57321
|
var drawPoint=this.CalculateDrawPoint({IsCheckX:true, IsCheckY:true});
|
|
57297
57322
|
if (!drawPoint) return;
|
|
@@ -57388,6 +57413,7 @@ function ChartDrawPictureFibonacci()
|
|
|
57388
57413
|
{
|
|
57389
57414
|
this.LinePoint=[];
|
|
57390
57415
|
if (this.IsFrameMinSize()) return;
|
|
57416
|
+
if (!this.IsShow) return;
|
|
57391
57417
|
|
|
57392
57418
|
var drawPoint=this.CalculateDrawPoint();
|
|
57393
57419
|
if (!drawPoint) return;
|
|
@@ -57590,6 +57616,7 @@ function ChartDrawLinearRegression(option)
|
|
|
57590
57616
|
{
|
|
57591
57617
|
this.LinePoint=[];
|
|
57592
57618
|
if (this.IsFrameMinSize()) return;
|
|
57619
|
+
if (!this.IsShow) return;
|
|
57593
57620
|
|
|
57594
57621
|
var drawPoint=this.CalculateDrawPoint( { IsCheckX:true, IsCheckY:true} );
|
|
57595
57622
|
if (!drawPoint || drawPoint.length!=2)
|
|
@@ -57984,6 +58011,7 @@ function ChartDrawPriceLine()
|
|
|
57984
58011
|
{
|
|
57985
58012
|
this.LinePoint=[];
|
|
57986
58013
|
if (this.IsFrameMinSize()) return;
|
|
58014
|
+
if (!this.IsShow) return;
|
|
57987
58015
|
|
|
57988
58016
|
var drawPoint=this.CalculateDrawPoint( { IsCheckX:false, IsCheckY:true } );
|
|
57989
58017
|
if (!drawPoint) return;
|
|
@@ -58084,6 +58112,7 @@ function ChartDrawPriceLineV2()
|
|
|
58084
58112
|
{
|
|
58085
58113
|
this.LinePoint=[];
|
|
58086
58114
|
if (this.IsFrameMinSize()) return;
|
|
58115
|
+
if (!this.IsShow) return;
|
|
58087
58116
|
|
|
58088
58117
|
var drawPoint=this.CalculateDrawPoint( { IsCheckX:false, IsCheckY:true } );
|
|
58089
58118
|
if (!drawPoint) return;
|
|
@@ -58254,6 +58283,7 @@ function ChartDrawVerticalLine()
|
|
|
58254
58283
|
{
|
|
58255
58284
|
this.LinePoint=[];
|
|
58256
58285
|
if (this.IsFrameMinSize()) return;
|
|
58286
|
+
if (!this.IsShow) return;
|
|
58257
58287
|
|
|
58258
58288
|
if (!this.Frame || !this.Frame.Data) return;
|
|
58259
58289
|
var data=this.Frame.Data;
|
|
@@ -58332,6 +58362,7 @@ function ChartDrawWaveRuler()
|
|
|
58332
58362
|
{
|
|
58333
58363
|
this.LinePoint=[];
|
|
58334
58364
|
if (this.IsFrameMinSize()) return;
|
|
58365
|
+
if (!this.IsShow) return;
|
|
58335
58366
|
|
|
58336
58367
|
var drawPoint=this.CalculateDrawPoint({IsCheckX:true, IsCheckY:true});
|
|
58337
58368
|
if (!drawPoint) return;
|
|
@@ -58494,6 +58525,7 @@ function ChartDrawWaveRuler2Point()
|
|
|
58494
58525
|
{
|
|
58495
58526
|
this.LinePoint=[];
|
|
58496
58527
|
if (this.IsFrameMinSize()) return;
|
|
58528
|
+
if (!this.IsShow) return;
|
|
58497
58529
|
|
|
58498
58530
|
var drawPoint=this.CalculateDrawPoint({IsCheckX:true, IsCheckY:true});
|
|
58499
58531
|
if (!drawPoint) return;
|
|
@@ -58626,6 +58658,7 @@ function ChartDrawBox()
|
|
|
58626
58658
|
{
|
|
58627
58659
|
this.LinePoint=[];
|
|
58628
58660
|
if (this.IsFrameMinSize()) return;
|
|
58661
|
+
if (!this.IsShow) return;
|
|
58629
58662
|
|
|
58630
58663
|
var drawPoint=this.CalculateDrawPoint( {IsCheckX:true, IsCheckY:true} );
|
|
58631
58664
|
if (!drawPoint) return;
|
|
@@ -58856,6 +58889,7 @@ function ChartDrawTwoPointDemo()
|
|
|
58856
58889
|
this.LinePoint=[];
|
|
58857
58890
|
this.PointInfo=[];
|
|
58858
58891
|
if (this.IsFrameMinSize()) return;
|
|
58892
|
+
if (!this.IsShow) return;
|
|
58859
58893
|
|
|
58860
58894
|
var drawPoint=this.CalculateDrawPoint({IsCheckX:true, IsCheckY:true});
|
|
58861
58895
|
if (!drawPoint) return;
|
|
@@ -59093,6 +59127,7 @@ function ChartDrawHLineSegment()
|
|
|
59093
59127
|
this.IsHScreen=this.Frame.IsHScreen;
|
|
59094
59128
|
this.LinePoint=[];
|
|
59095
59129
|
if (this.IsFrameMinSize()) return;
|
|
59130
|
+
if (!this.IsShow) return;
|
|
59096
59131
|
|
|
59097
59132
|
var drawPoint=this.CalculateDrawPoint( { IsCheckX:false, IsCheckY:true} );
|
|
59098
59133
|
if (!drawPoint || drawPoint.length!=2) return;
|
|
@@ -59748,6 +59783,7 @@ function ChartDrawNote()
|
|
|
59748
59783
|
this.TextRect=null;
|
|
59749
59784
|
this.PtCenter=null;
|
|
59750
59785
|
if (this.IsFrameMinSize()) return;
|
|
59786
|
+
if (!this.IsShow) return;
|
|
59751
59787
|
|
|
59752
59788
|
var drawPoint=this.CalculateDrawPoint({IsCheckX:true, IsCheckY:true});
|
|
59753
59789
|
if (!drawPoint || drawPoint.length!=1) return;
|
|
@@ -60131,6 +60167,7 @@ function ChartDrawAnchoredText()
|
|
|
60131
60167
|
if (this.Status<2) return;
|
|
60132
60168
|
if(this.Point.length!=1 || !this.Frame) return;
|
|
60133
60169
|
if (this.IsFrameMinSize()) return;
|
|
60170
|
+
if (!this.IsShow) return;
|
|
60134
60171
|
|
|
60135
60172
|
var drawPoint=this.CalculateDrawPoint();
|
|
60136
60173
|
if (!drawPoint || drawPoint.length!=1) return;
|
|
@@ -60480,6 +60517,7 @@ function ChartDrawPriceLabel()
|
|
|
60480
60517
|
{
|
|
60481
60518
|
this.TextRect=null;
|
|
60482
60519
|
if (this.IsFrameMinSize()) return;
|
|
60520
|
+
if (!this.IsShow) return;
|
|
60483
60521
|
|
|
60484
60522
|
var drawPoint=this.CalculateDrawPoint({IsCheckX:true, IsCheckY:true});
|
|
60485
60523
|
if (!drawPoint || drawPoint.length!=1) return;
|
|
@@ -60719,6 +60757,7 @@ function ChartDrawPriceNote()
|
|
|
60719
60757
|
this.LinePoint=[];
|
|
60720
60758
|
this.TextRect=null;
|
|
60721
60759
|
if (this.IsFrameMinSize()) return;
|
|
60760
|
+
if (!this.IsShow) return;
|
|
60722
60761
|
|
|
60723
60762
|
var drawPoint=this.CalculateDrawPoint( {IsCheckX:true, IsCheckY:true} );
|
|
60724
60763
|
if (!drawPoint) return;
|
|
@@ -61063,6 +61102,7 @@ function ChartDrawFibWedge()
|
|
|
61063
61102
|
this.TextAngle=null;
|
|
61064
61103
|
this.Radius=null;
|
|
61065
61104
|
if (this.IsFrameMinSize()) return;
|
|
61105
|
+
if (!this.IsShow) return;
|
|
61066
61106
|
|
|
61067
61107
|
var drawPoint=this.CalculateDrawPoint({IsCheckX:false, IsCheckY:false});
|
|
61068
61108
|
if (!IFrameSplitOperator.IsNonEmptyArray(drawPoint)) return;
|
|
@@ -61446,6 +61486,8 @@ function ChartFibRetracement()
|
|
|
61446
61486
|
{
|
|
61447
61487
|
this.LinePoint=[];
|
|
61448
61488
|
if (this.IsFrameMinSize()) return;
|
|
61489
|
+
if (!this.IsShow) return;
|
|
61490
|
+
|
|
61449
61491
|
var bCheckXY=true;
|
|
61450
61492
|
if (this.ExtendLine.Left || this.ExtendLine.Right) bCheckXY=false;
|
|
61451
61493
|
var drawPoint=this.CalculateDrawPoint( {IsCheckX:bCheckXY, IsCheckY:bCheckXY} );
|
|
@@ -61638,6 +61680,8 @@ function ChartFibSpeedResistanceFan()
|
|
|
61638
61680
|
{
|
|
61639
61681
|
this.LinePoint=[];
|
|
61640
61682
|
if (this.IsFrameMinSize()) return;
|
|
61683
|
+
if (!this.IsShow) return;
|
|
61684
|
+
|
|
61641
61685
|
var bCheckXY=false;
|
|
61642
61686
|
var drawPoint=this.CalculateDrawPoint( {IsCheckX:bCheckXY, IsCheckY:bCheckXY} );
|
|
61643
61687
|
if (!drawPoint) return;
|
|
@@ -61903,6 +61947,8 @@ function ChartPriceRange()
|
|
|
61903
61947
|
{
|
|
61904
61948
|
this.LinePoint=[];
|
|
61905
61949
|
if (this.IsFrameMinSize()) return;
|
|
61950
|
+
if (!this.IsShow) return;
|
|
61951
|
+
|
|
61906
61952
|
var bCheckXY=true;
|
|
61907
61953
|
if (this.ExtendLine.Left || this.ExtendLine.Right) bCheckXY=false;
|
|
61908
61954
|
var drawPoint=this.CalculateDrawPoint( {IsCheckX:bCheckXY, IsCheckY:bCheckXY} );
|
|
@@ -62020,6 +62066,8 @@ function ChartDateRange()
|
|
|
62020
62066
|
{
|
|
62021
62067
|
this.LinePoint=[];
|
|
62022
62068
|
if (this.IsFrameMinSize()) return;
|
|
62069
|
+
if (!this.IsShow) return;
|
|
62070
|
+
|
|
62023
62071
|
var bCheckXY=true;
|
|
62024
62072
|
var drawPoint=this.CalculateDrawPoint( {IsCheckX:bCheckXY, IsCheckY:bCheckXY} );
|
|
62025
62073
|
if (!drawPoint) return;
|
|
@@ -56295,6 +56295,7 @@ function IChartDrawPicture()
|
|
|
56295
56295
|
|
|
56296
56296
|
this.IsDrawFirst=false;
|
|
56297
56297
|
this.IsShowYCoordinate=false; //是否在Y轴显示点的刻度
|
|
56298
|
+
this.IsShow=true; //是否显示
|
|
56298
56299
|
|
|
56299
56300
|
this.LineColor=g_JSChartResource.DrawPicture.LineColor[0]; //线段颜色
|
|
56300
56301
|
//this.LineColor="#1e90ff"; //线段颜色,input type="color" 不支持rgb和rgba 的格式
|
|
@@ -57364,6 +57365,8 @@ function IChartDrawPicture()
|
|
|
57364
57365
|
this.GetXYCoordinate_default=function()
|
|
57365
57366
|
{
|
|
57366
57367
|
if (this.IsFrameMinSize()) return null;
|
|
57368
|
+
if (!this.IsShow) return null;
|
|
57369
|
+
|
|
57367
57370
|
var drawPoint=this.CalculateDrawPoint( {IsCheckX:true, IsCheckY:true} );
|
|
57368
57371
|
|
|
57369
57372
|
return this.PointRange(drawPoint);
|
|
@@ -57819,6 +57822,7 @@ function ChartDrawPictureLine()
|
|
|
57819
57822
|
{
|
|
57820
57823
|
this.LinePoint=[];
|
|
57821
57824
|
if (this.IsFrameMinSize()) return;
|
|
57825
|
+
if (!this.IsShow) return;
|
|
57822
57826
|
|
|
57823
57827
|
var drawPoint=this.CalculateDrawPoint( {IsCheckX:true, IsCheckY:true} );
|
|
57824
57828
|
if (!drawPoint) return;
|
|
@@ -57856,6 +57860,7 @@ function ChartDrawPictureLine()
|
|
|
57856
57860
|
this.GetYCoordinatePoint=function()
|
|
57857
57861
|
{
|
|
57858
57862
|
if (this.IsFrameMinSize()) return null;
|
|
57863
|
+
if (!this.IsShow) return null;
|
|
57859
57864
|
|
|
57860
57865
|
if (this.Status<2) return null;
|
|
57861
57866
|
if(!this.Point.length || !this.Frame) return null;
|
|
@@ -58018,6 +58023,7 @@ function ChartDrawGraffitiLine()
|
|
|
58018
58023
|
{
|
|
58019
58024
|
this.LinePoint=[];
|
|
58020
58025
|
if (this.IsFrameMinSize()) return;
|
|
58026
|
+
if (!this.IsShow) return;
|
|
58021
58027
|
|
|
58022
58028
|
var drawPoint=this.CalculateDrawPoint( {IsCheckX:true, IsCheckY:true} );
|
|
58023
58029
|
if (!drawPoint) return;
|
|
@@ -58073,6 +58079,7 @@ function ChartDrawArrowLine()
|
|
|
58073
58079
|
{
|
|
58074
58080
|
this.LinePoint=[];
|
|
58075
58081
|
if (this.IsFrameMinSize()) return;
|
|
58082
|
+
if (!this.IsShow) return;
|
|
58076
58083
|
|
|
58077
58084
|
var drawPoint=this.CalculateDrawPoint( {IsCheckX:true, IsCheckY:true} );
|
|
58078
58085
|
if (!drawPoint) return;
|
|
@@ -58191,6 +58198,7 @@ function ChartDrawPictureHaflLine()
|
|
|
58191
58198
|
this.LinePoint=[];
|
|
58192
58199
|
this.FullLine=null;
|
|
58193
58200
|
if (this.IsFrameMinSize()) return;
|
|
58201
|
+
if (!this.IsShow) return;
|
|
58194
58202
|
|
|
58195
58203
|
var drawPoint=this.CalculateDrawPoint({IsCheckX:false, IsCheckY:false});
|
|
58196
58204
|
if (!drawPoint || drawPoint.length!=2) return;
|
|
@@ -58269,6 +58277,7 @@ function ChartDrawPictureHorizontalLine()
|
|
|
58269
58277
|
{
|
|
58270
58278
|
this.LinePoint=[];
|
|
58271
58279
|
if (this.IsFrameMinSize()) return;
|
|
58280
|
+
if (!this.IsShow) return;
|
|
58272
58281
|
|
|
58273
58282
|
var drawPoint=this.CalculateDrawPoint();
|
|
58274
58283
|
if (!drawPoint || drawPoint.length!=1) return;
|
|
@@ -58525,6 +58534,7 @@ function ChartDrawHLine()
|
|
|
58525
58534
|
this.ButtonBGWidth=0;
|
|
58526
58535
|
|
|
58527
58536
|
if (this.IsFrameMinSize()) return;
|
|
58537
|
+
if (!this.IsShow) return;
|
|
58528
58538
|
|
|
58529
58539
|
var drawPoint=this.CalculateDrawPoint();
|
|
58530
58540
|
if (!drawPoint || drawPoint.length!=1) return;
|
|
@@ -58922,6 +58932,7 @@ function ChartDrawPictureTrendLine()
|
|
|
58922
58932
|
{
|
|
58923
58933
|
this.LinePoint=[];
|
|
58924
58934
|
if (this.IsFrameMinSize()) return;
|
|
58935
|
+
if (!this.IsShow) return;
|
|
58925
58936
|
|
|
58926
58937
|
var drawPoint=this.CalculateDrawPoint({IsCheckX:false, IsCheckY:false});
|
|
58927
58938
|
if (!drawPoint || drawPoint.length!=2) return;
|
|
@@ -58964,6 +58975,7 @@ function ChartDrawPictureRect()
|
|
|
58964
58975
|
this.Draw=function()
|
|
58965
58976
|
{
|
|
58966
58977
|
if (this.IsFrameMinSize()) return;
|
|
58978
|
+
if (!this.IsShow) return;
|
|
58967
58979
|
|
|
58968
58980
|
var drawPoint=this.CalculateDrawPoint({IsCheckX:true, IsCheckY:true});
|
|
58969
58981
|
if (!drawPoint || drawPoint.length!=2) return;
|
|
@@ -59075,6 +59087,7 @@ function ChartDrawPictureArc()
|
|
|
59075
59087
|
this.Draw=function()
|
|
59076
59088
|
{
|
|
59077
59089
|
if (this.IsFrameMinSize()) return;
|
|
59090
|
+
if (!this.IsShow) return;
|
|
59078
59091
|
|
|
59079
59092
|
var drawPoint=this.CalculateDrawPoint();
|
|
59080
59093
|
if (!drawPoint || drawPoint.length!=2) return;
|
|
@@ -59306,6 +59319,7 @@ function ChartDrawPictureWaveMW()
|
|
|
59306
59319
|
this.LinePoint=[];
|
|
59307
59320
|
if (!this.Frame) return;
|
|
59308
59321
|
if (this.IsFrameMinSize()) return;
|
|
59322
|
+
if (!this.IsShow) return;
|
|
59309
59323
|
|
|
59310
59324
|
this.IsHScreen=this.Frame.IsHScreen;
|
|
59311
59325
|
var drawPoint=this.CalculateDrawPoint({IsCheckX:true, IsCheckY:true});
|
|
@@ -59604,6 +59618,7 @@ function ChartDrawPictureParallelLines()
|
|
|
59604
59618
|
this.LinePoint=[];
|
|
59605
59619
|
this.CenterLine.Line=null;
|
|
59606
59620
|
if (this.IsFrameMinSize()) return;
|
|
59621
|
+
if (!this.IsShow) return;
|
|
59607
59622
|
|
|
59608
59623
|
var drawPoint=this.CalculateDrawPoint({IsCheckX:false, IsCheckY:false}); //不检测x,y
|
|
59609
59624
|
if (!drawPoint) return;
|
|
@@ -59717,6 +59732,7 @@ function ChartDrawFlatTop()
|
|
|
59717
59732
|
{
|
|
59718
59733
|
this.LinePoint=[];
|
|
59719
59734
|
if (this.IsFrameMinSize()) return;
|
|
59735
|
+
if (!this.IsShow) return;
|
|
59720
59736
|
|
|
59721
59737
|
var drawPoint=this.CalculateDrawPoint({IsCheckX:true, IsCheckY:true});
|
|
59722
59738
|
if (!drawPoint) return;
|
|
@@ -60069,6 +60085,7 @@ function ChartDrawPictureParallelChannel()
|
|
|
60069
60085
|
{
|
|
60070
60086
|
this.LinePoint=[];
|
|
60071
60087
|
if (this.IsFrameMinSize()) return;
|
|
60088
|
+
if (!this.IsShow) return;
|
|
60072
60089
|
|
|
60073
60090
|
var drawPoint=this.CalculateDrawPoint();
|
|
60074
60091
|
if (!drawPoint) return;
|
|
@@ -60219,6 +60236,7 @@ function ChartDrawPictureText()
|
|
|
60219
60236
|
{
|
|
60220
60237
|
this.TextRect=null;
|
|
60221
60238
|
if (this.IsFrameMinSize()) return;
|
|
60239
|
+
if (!this.IsShow) return;
|
|
60222
60240
|
|
|
60223
60241
|
var drawPoint=this.CalculateDrawPoint({IsCheckX:true, IsCheckY:true});
|
|
60224
60242
|
if (!drawPoint || drawPoint.length!=1) return;
|
|
@@ -60322,6 +60340,7 @@ function ChartDrawPictureIconFont()
|
|
|
60322
60340
|
{
|
|
60323
60341
|
this.TextRect=null;
|
|
60324
60342
|
if (this.IsFrameMinSize()) return;
|
|
60343
|
+
if (!this.IsShow) return;
|
|
60325
60344
|
|
|
60326
60345
|
var drawPoint=this.CalculateDrawPoint({IsCheckX:true, IsCheckY:true});
|
|
60327
60346
|
if (!drawPoint || drawPoint.length!=1) return;
|
|
@@ -60420,6 +60439,7 @@ function ChartDrawPictureGannFan()
|
|
|
60420
60439
|
{
|
|
60421
60440
|
this.LinePoint=[];
|
|
60422
60441
|
if (this.IsFrameMinSize()) return;
|
|
60442
|
+
if (!this.IsShow) return;
|
|
60423
60443
|
|
|
60424
60444
|
var drawPoint=this.CalculateDrawPoint({IsCheckX:true, IsCheckY:true});
|
|
60425
60445
|
if (!drawPoint) return;
|
|
@@ -60731,6 +60751,7 @@ function ChartDrawPictureGoldenSection()
|
|
|
60731
60751
|
{
|
|
60732
60752
|
this.LinePoint=[];
|
|
60733
60753
|
if (this.IsFrameMinSize()) return;
|
|
60754
|
+
if (!this.IsShow) return;
|
|
60734
60755
|
|
|
60735
60756
|
var drawPoint=this.CalculateDrawPoint();
|
|
60736
60757
|
if (!drawPoint) return;
|
|
@@ -60908,6 +60929,7 @@ function ChartDrawPictureTriangle()
|
|
|
60908
60929
|
{
|
|
60909
60930
|
this.LinePoint=[];
|
|
60910
60931
|
if (this.IsFrameMinSize()) return;
|
|
60932
|
+
if (!this.IsShow) return;
|
|
60911
60933
|
|
|
60912
60934
|
var drawPoint=this.CalculateDrawPoint({IsCheckX:true, IsCheckY:true});
|
|
60913
60935
|
if (!drawPoint) return;
|
|
@@ -61027,6 +61049,7 @@ function ChartDrawPictureSymmetryAngle()
|
|
|
61027
61049
|
{
|
|
61028
61050
|
this.LinePoint=[];
|
|
61029
61051
|
if (this.IsFrameMinSize()) return;
|
|
61052
|
+
if (!this.IsShow) return;
|
|
61030
61053
|
|
|
61031
61054
|
var drawPoint=this.CalculateDrawPoint({IsCheckX:true, IsCheckY:true});
|
|
61032
61055
|
if (!drawPoint) return;
|
|
@@ -61121,6 +61144,7 @@ function ChartDrawPictureCircle()
|
|
|
61121
61144
|
{
|
|
61122
61145
|
this.LinePoint=[];
|
|
61123
61146
|
if (this.IsFrameMinSize()) return;
|
|
61147
|
+
if (!this.IsShow) return;
|
|
61124
61148
|
|
|
61125
61149
|
var drawPoint=this.CalculateDrawPoint({IsCheckX:true, IsCheckY:true});
|
|
61126
61150
|
if (!drawPoint || drawPoint.length!=2) return;
|
|
@@ -61184,6 +61208,7 @@ function ChartDrawPictureQuadrangle()
|
|
|
61184
61208
|
{
|
|
61185
61209
|
this.LinePoint=[];
|
|
61186
61210
|
if (this.IsFrameMinSize()) return;
|
|
61211
|
+
if (!this.IsShow) return;
|
|
61187
61212
|
|
|
61188
61213
|
var drawPoint=this.CalculateDrawPoint({IsCheckX:true, IsCheckY:true});
|
|
61189
61214
|
if (!drawPoint) return;
|
|
@@ -61280,6 +61305,7 @@ function ChartDrawPictureFibonacci()
|
|
|
61280
61305
|
{
|
|
61281
61306
|
this.LinePoint=[];
|
|
61282
61307
|
if (this.IsFrameMinSize()) return;
|
|
61308
|
+
if (!this.IsShow) return;
|
|
61283
61309
|
|
|
61284
61310
|
var drawPoint=this.CalculateDrawPoint();
|
|
61285
61311
|
if (!drawPoint) return;
|
|
@@ -61482,6 +61508,7 @@ function ChartDrawLinearRegression(option)
|
|
|
61482
61508
|
{
|
|
61483
61509
|
this.LinePoint=[];
|
|
61484
61510
|
if (this.IsFrameMinSize()) return;
|
|
61511
|
+
if (!this.IsShow) return;
|
|
61485
61512
|
|
|
61486
61513
|
var drawPoint=this.CalculateDrawPoint( { IsCheckX:true, IsCheckY:true} );
|
|
61487
61514
|
if (!drawPoint || drawPoint.length!=2)
|
|
@@ -61876,6 +61903,7 @@ function ChartDrawPriceLine()
|
|
|
61876
61903
|
{
|
|
61877
61904
|
this.LinePoint=[];
|
|
61878
61905
|
if (this.IsFrameMinSize()) return;
|
|
61906
|
+
if (!this.IsShow) return;
|
|
61879
61907
|
|
|
61880
61908
|
var drawPoint=this.CalculateDrawPoint( { IsCheckX:false, IsCheckY:true } );
|
|
61881
61909
|
if (!drawPoint) return;
|
|
@@ -61976,6 +62004,7 @@ function ChartDrawPriceLineV2()
|
|
|
61976
62004
|
{
|
|
61977
62005
|
this.LinePoint=[];
|
|
61978
62006
|
if (this.IsFrameMinSize()) return;
|
|
62007
|
+
if (!this.IsShow) return;
|
|
61979
62008
|
|
|
61980
62009
|
var drawPoint=this.CalculateDrawPoint( { IsCheckX:false, IsCheckY:true } );
|
|
61981
62010
|
if (!drawPoint) return;
|
|
@@ -62146,6 +62175,7 @@ function ChartDrawVerticalLine()
|
|
|
62146
62175
|
{
|
|
62147
62176
|
this.LinePoint=[];
|
|
62148
62177
|
if (this.IsFrameMinSize()) return;
|
|
62178
|
+
if (!this.IsShow) return;
|
|
62149
62179
|
|
|
62150
62180
|
if (!this.Frame || !this.Frame.Data) return;
|
|
62151
62181
|
var data=this.Frame.Data;
|
|
@@ -62224,6 +62254,7 @@ function ChartDrawWaveRuler()
|
|
|
62224
62254
|
{
|
|
62225
62255
|
this.LinePoint=[];
|
|
62226
62256
|
if (this.IsFrameMinSize()) return;
|
|
62257
|
+
if (!this.IsShow) return;
|
|
62227
62258
|
|
|
62228
62259
|
var drawPoint=this.CalculateDrawPoint({IsCheckX:true, IsCheckY:true});
|
|
62229
62260
|
if (!drawPoint) return;
|
|
@@ -62386,6 +62417,7 @@ function ChartDrawWaveRuler2Point()
|
|
|
62386
62417
|
{
|
|
62387
62418
|
this.LinePoint=[];
|
|
62388
62419
|
if (this.IsFrameMinSize()) return;
|
|
62420
|
+
if (!this.IsShow) return;
|
|
62389
62421
|
|
|
62390
62422
|
var drawPoint=this.CalculateDrawPoint({IsCheckX:true, IsCheckY:true});
|
|
62391
62423
|
if (!drawPoint) return;
|
|
@@ -62518,6 +62550,7 @@ function ChartDrawBox()
|
|
|
62518
62550
|
{
|
|
62519
62551
|
this.LinePoint=[];
|
|
62520
62552
|
if (this.IsFrameMinSize()) return;
|
|
62553
|
+
if (!this.IsShow) return;
|
|
62521
62554
|
|
|
62522
62555
|
var drawPoint=this.CalculateDrawPoint( {IsCheckX:true, IsCheckY:true} );
|
|
62523
62556
|
if (!drawPoint) return;
|
|
@@ -62748,6 +62781,7 @@ function ChartDrawTwoPointDemo()
|
|
|
62748
62781
|
this.LinePoint=[];
|
|
62749
62782
|
this.PointInfo=[];
|
|
62750
62783
|
if (this.IsFrameMinSize()) return;
|
|
62784
|
+
if (!this.IsShow) return;
|
|
62751
62785
|
|
|
62752
62786
|
var drawPoint=this.CalculateDrawPoint({IsCheckX:true, IsCheckY:true});
|
|
62753
62787
|
if (!drawPoint) return;
|
|
@@ -62985,6 +63019,7 @@ function ChartDrawHLineSegment()
|
|
|
62985
63019
|
this.IsHScreen=this.Frame.IsHScreen;
|
|
62986
63020
|
this.LinePoint=[];
|
|
62987
63021
|
if (this.IsFrameMinSize()) return;
|
|
63022
|
+
if (!this.IsShow) return;
|
|
62988
63023
|
|
|
62989
63024
|
var drawPoint=this.CalculateDrawPoint( { IsCheckX:false, IsCheckY:true} );
|
|
62990
63025
|
if (!drawPoint || drawPoint.length!=2) return;
|
|
@@ -63640,6 +63675,7 @@ function ChartDrawNote()
|
|
|
63640
63675
|
this.TextRect=null;
|
|
63641
63676
|
this.PtCenter=null;
|
|
63642
63677
|
if (this.IsFrameMinSize()) return;
|
|
63678
|
+
if (!this.IsShow) return;
|
|
63643
63679
|
|
|
63644
63680
|
var drawPoint=this.CalculateDrawPoint({IsCheckX:true, IsCheckY:true});
|
|
63645
63681
|
if (!drawPoint || drawPoint.length!=1) return;
|
|
@@ -64023,6 +64059,7 @@ function ChartDrawAnchoredText()
|
|
|
64023
64059
|
if (this.Status<2) return;
|
|
64024
64060
|
if(this.Point.length!=1 || !this.Frame) return;
|
|
64025
64061
|
if (this.IsFrameMinSize()) return;
|
|
64062
|
+
if (!this.IsShow) return;
|
|
64026
64063
|
|
|
64027
64064
|
var drawPoint=this.CalculateDrawPoint();
|
|
64028
64065
|
if (!drawPoint || drawPoint.length!=1) return;
|
|
@@ -64372,6 +64409,7 @@ function ChartDrawPriceLabel()
|
|
|
64372
64409
|
{
|
|
64373
64410
|
this.TextRect=null;
|
|
64374
64411
|
if (this.IsFrameMinSize()) return;
|
|
64412
|
+
if (!this.IsShow) return;
|
|
64375
64413
|
|
|
64376
64414
|
var drawPoint=this.CalculateDrawPoint({IsCheckX:true, IsCheckY:true});
|
|
64377
64415
|
if (!drawPoint || drawPoint.length!=1) return;
|
|
@@ -64611,6 +64649,7 @@ function ChartDrawPriceNote()
|
|
|
64611
64649
|
this.LinePoint=[];
|
|
64612
64650
|
this.TextRect=null;
|
|
64613
64651
|
if (this.IsFrameMinSize()) return;
|
|
64652
|
+
if (!this.IsShow) return;
|
|
64614
64653
|
|
|
64615
64654
|
var drawPoint=this.CalculateDrawPoint( {IsCheckX:true, IsCheckY:true} );
|
|
64616
64655
|
if (!drawPoint) return;
|
|
@@ -64955,6 +64994,7 @@ function ChartDrawFibWedge()
|
|
|
64955
64994
|
this.TextAngle=null;
|
|
64956
64995
|
this.Radius=null;
|
|
64957
64996
|
if (this.IsFrameMinSize()) return;
|
|
64997
|
+
if (!this.IsShow) return;
|
|
64958
64998
|
|
|
64959
64999
|
var drawPoint=this.CalculateDrawPoint({IsCheckX:false, IsCheckY:false});
|
|
64960
65000
|
if (!IFrameSplitOperator.IsNonEmptyArray(drawPoint)) return;
|
|
@@ -65338,6 +65378,8 @@ function ChartFibRetracement()
|
|
|
65338
65378
|
{
|
|
65339
65379
|
this.LinePoint=[];
|
|
65340
65380
|
if (this.IsFrameMinSize()) return;
|
|
65381
|
+
if (!this.IsShow) return;
|
|
65382
|
+
|
|
65341
65383
|
var bCheckXY=true;
|
|
65342
65384
|
if (this.ExtendLine.Left || this.ExtendLine.Right) bCheckXY=false;
|
|
65343
65385
|
var drawPoint=this.CalculateDrawPoint( {IsCheckX:bCheckXY, IsCheckY:bCheckXY} );
|
|
@@ -65530,6 +65572,8 @@ function ChartFibSpeedResistanceFan()
|
|
|
65530
65572
|
{
|
|
65531
65573
|
this.LinePoint=[];
|
|
65532
65574
|
if (this.IsFrameMinSize()) return;
|
|
65575
|
+
if (!this.IsShow) return;
|
|
65576
|
+
|
|
65533
65577
|
var bCheckXY=false;
|
|
65534
65578
|
var drawPoint=this.CalculateDrawPoint( {IsCheckX:bCheckXY, IsCheckY:bCheckXY} );
|
|
65535
65579
|
if (!drawPoint) return;
|
|
@@ -65795,6 +65839,8 @@ function ChartPriceRange()
|
|
|
65795
65839
|
{
|
|
65796
65840
|
this.LinePoint=[];
|
|
65797
65841
|
if (this.IsFrameMinSize()) return;
|
|
65842
|
+
if (!this.IsShow) return;
|
|
65843
|
+
|
|
65798
65844
|
var bCheckXY=true;
|
|
65799
65845
|
if (this.ExtendLine.Left || this.ExtendLine.Right) bCheckXY=false;
|
|
65800
65846
|
var drawPoint=this.CalculateDrawPoint( {IsCheckX:bCheckXY, IsCheckY:bCheckXY} );
|
|
@@ -65912,6 +65958,8 @@ function ChartDateRange()
|
|
|
65912
65958
|
{
|
|
65913
65959
|
this.LinePoint=[];
|
|
65914
65960
|
if (this.IsFrameMinSize()) return;
|
|
65961
|
+
if (!this.IsShow) return;
|
|
65962
|
+
|
|
65915
65963
|
var bCheckXY=true;
|
|
65916
65964
|
var drawPoint=this.CalculateDrawPoint( {IsCheckX:bCheckXY, IsCheckY:bCheckXY} );
|
|
65917
65965
|
if (!drawPoint) return;
|
|
@@ -129854,7 +129902,7 @@ function ScrollBarBGChart()
|
|
|
129854
129902
|
|
|
129855
129903
|
|
|
129856
129904
|
|
|
129857
|
-
var HQCHART_VERSION="1.1.
|
|
129905
|
+
var HQCHART_VERSION="1.1.13015";
|
|
129858
129906
|
|
|
129859
129907
|
function PrintHQChartVersion()
|
|
129860
129908
|
{
|