hqchart 1.1.14653 → 1.1.14663
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 +41 -27
- package/package.json +1 -1
- package/src/jscommon/umychart.TReport.js +93 -0
- package/src/jscommon/umychart.js +248 -5
- package/src/jscommon/umychart.report.js +10 -0
- package/src/jscommon/umychart.style.js +7 -0
- package/src/jscommon/umychart.uniapp.h5/umychart.uniapp.h5.js +266 -6
- package/src/jscommon/umychart.version.js +1 -1
- package/src/jscommon/umychart.vue/umychart.vue.js +359 -6
|
@@ -4728,6 +4728,7 @@ function JSChart(divElement, bOffscreen, bCacheCanvas)
|
|
|
4728
4728
|
}
|
|
4729
4729
|
|
|
4730
4730
|
if (IFrameSplitOperator.IsBool(item.EnablePrediction)) klineChart.PredictionConfig.Enable=item.EnablePrediction;
|
|
4731
|
+
if (IFrameSplitOperator.IsBool(item.EnableDaySummary)) klineChart.DaySummary.Enable=item.EnableDaySummary;
|
|
4731
4732
|
}
|
|
4732
4733
|
|
|
4733
4734
|
if(option.KLineTitle)
|
|
@@ -7065,6 +7066,7 @@ var JSCHART_MENU_ID=
|
|
|
7065
7066
|
|
|
7066
7067
|
CMD_FULLSCREEN_SUMMARY_ID:56, //当前屏区间统计
|
|
7067
7068
|
CMD_CORSS_DBCLICK_ID:57, //双击显示隐藏十字光标
|
|
7069
|
+
CMD_ENABLE_KLINE_DAY_SUMMARY_ID:58, //K线底部显示走完剩余时间
|
|
7068
7070
|
|
|
7069
7071
|
|
|
7070
7072
|
|
|
@@ -15038,6 +15040,13 @@ function JSChartContainer(uielement, OffscreenElement, cacheElement)
|
|
|
15038
15040
|
case JSCHART_MENU_ID.CMD_FULLSCREEN_SUMMARY_ID:
|
|
15039
15041
|
this.FullScreenSummary();
|
|
15040
15042
|
break;
|
|
15043
|
+
case JSCHART_MENU_ID.CMD_ENABLE_KLINE_DAY_SUMMARY_ID:
|
|
15044
|
+
if (IFrameSplitOperator.IsBool(srcParam))
|
|
15045
|
+
{
|
|
15046
|
+
this.ChartPaint[0].DaySummary.Enable=srcParam;
|
|
15047
|
+
this.Draw();
|
|
15048
|
+
}
|
|
15049
|
+
break;
|
|
15041
15050
|
}
|
|
15042
15051
|
}
|
|
15043
15052
|
|
|
@@ -15747,6 +15756,20 @@ function IsRectOverlap(rt, rt2)
|
|
|
15747
15756
|
return false;
|
|
15748
15757
|
}
|
|
15749
15758
|
|
|
15759
|
+
//获取文字高度和宽度
|
|
15760
|
+
function GetTextSize(canvas, text, option)
|
|
15761
|
+
{
|
|
15762
|
+
var data=canvas.measureText(text);
|
|
15763
|
+
var height=Math.abs(Math.abs(data.fontBoundingBoxAscent)+Math.abs(data.fontBoundingBoxDescent));
|
|
15764
|
+
var textBaseline=canvas.textBaseline;
|
|
15765
|
+
|
|
15766
|
+
if (textBaseline=="top") height=data.fontBoundingBoxDescent;
|
|
15767
|
+
else if (textBaseline=="bottom") height=data.fontBoundingBoxAscent;
|
|
15768
|
+
|
|
15769
|
+
var result={ Width:data.width, Height:height};
|
|
15770
|
+
return result;
|
|
15771
|
+
}
|
|
15772
|
+
|
|
15750
15773
|
Number.prototype.toFixed2=Number.prototype.toFixed; //备份下老的
|
|
15751
15774
|
Number.prototype.toFixed = function( precision )
|
|
15752
15775
|
{
|
|
@@ -30705,6 +30728,31 @@ function ChartKLine()
|
|
|
30705
30728
|
//面积图和收盘价线 断开点
|
|
30706
30729
|
this.AryBreakPoint;
|
|
30707
30730
|
|
|
30731
|
+
//天数统计
|
|
30732
|
+
this.DaySummary={ MapDate:new Map(), Enable:false };
|
|
30733
|
+
this.DaySummaryConfig=
|
|
30734
|
+
{
|
|
30735
|
+
Font: g_JSChartResource.DaySummaryKLine.Font,
|
|
30736
|
+
TextColor: g_JSChartResource.DaySummaryKLine.TextColor
|
|
30737
|
+
}
|
|
30738
|
+
|
|
30739
|
+
this.AddToDaySummary=function(kItem)
|
|
30740
|
+
{
|
|
30741
|
+
if (!this.DaySummary.Enable) return false;
|
|
30742
|
+
|
|
30743
|
+
if (!kItem) return false;
|
|
30744
|
+
if (!IFrameSplitOperator.IsPlusNumber(kItem.Date)) return false;
|
|
30745
|
+
|
|
30746
|
+
if (this.DaySummary.MapDate.has(kItem.Date)) return false;
|
|
30747
|
+
|
|
30748
|
+
this.DaySummary.MapDate.set(kItem.Date, { Date:kItem.Date });
|
|
30749
|
+
}
|
|
30750
|
+
|
|
30751
|
+
this.ClearDaySummary=function()
|
|
30752
|
+
{
|
|
30753
|
+
this.DaySummary.MapDate.clear();
|
|
30754
|
+
}
|
|
30755
|
+
|
|
30708
30756
|
this.BuildDateTimeKey=function(item)
|
|
30709
30757
|
{
|
|
30710
30758
|
if (!item) return null;
|
|
@@ -30762,6 +30810,13 @@ function ChartKLine()
|
|
|
30762
30810
|
UnchangeColor:g_JSChartResource.PredictionKLine.Bar.UnchangeColor,
|
|
30763
30811
|
DrawType:g_JSChartResource.PredictionKLine.Bar.DrawType
|
|
30764
30812
|
};
|
|
30813
|
+
|
|
30814
|
+
|
|
30815
|
+
this.DaySummaryConfig=
|
|
30816
|
+
{
|
|
30817
|
+
Font: g_JSChartResource.DaySummaryKLine.Font,
|
|
30818
|
+
TextColor: g_JSChartResource.DaySummaryKLine.TextColor
|
|
30819
|
+
}
|
|
30765
30820
|
|
|
30766
30821
|
}
|
|
30767
30822
|
|
|
@@ -31394,6 +31449,8 @@ function ChartKLine()
|
|
|
31394
31449
|
this.ShowRange.End=i;
|
|
31395
31450
|
if (!data || data.Open==null || data.High==null || data.Low==null || data.Close==null) continue;
|
|
31396
31451
|
|
|
31452
|
+
this.AddToDaySummary(data);
|
|
31453
|
+
|
|
31397
31454
|
var left=xOffset;
|
|
31398
31455
|
var right=xOffset+dataWidth;
|
|
31399
31456
|
if (right>chartright) break;
|
|
@@ -33279,6 +33336,7 @@ function ChartKLine()
|
|
|
33279
33336
|
if (this.IsShowIndexTitleOnly()) return;
|
|
33280
33337
|
if (this.IsHideScriptIndex()) return;
|
|
33281
33338
|
|
|
33339
|
+
this.ClearDaySummary();
|
|
33282
33340
|
this.IsShowOrderText=false;
|
|
33283
33341
|
this.TooltipRect=[];
|
|
33284
33342
|
this.InfoTooltipRect=[];
|
|
@@ -33417,6 +33475,8 @@ function ChartKLine()
|
|
|
33417
33475
|
this.FFKChart.DrawMaxMinPrice();
|
|
33418
33476
|
}
|
|
33419
33477
|
}
|
|
33478
|
+
|
|
33479
|
+
this.DrawDaySummary();
|
|
33420
33480
|
}
|
|
33421
33481
|
|
|
33422
33482
|
this.OnFormatHighLowTitle=function(ptMax, ptMin)
|
|
@@ -33487,8 +33547,33 @@ function ChartKLine()
|
|
|
33487
33547
|
else text=text+rightArrow;
|
|
33488
33548
|
if (ptTop.Y>(top-2))
|
|
33489
33549
|
{
|
|
33550
|
+
var textSize=GetTextSize(this.Canvas,text);
|
|
33551
|
+
var textWidth=textSize.Width;
|
|
33552
|
+
var textHeight=textSize.Height;
|
|
33553
|
+
if (this.ChartFrame.CoordinateType==1) //反转坐标
|
|
33554
|
+
{
|
|
33555
|
+
var rtText={ Width:textWidth, Height:textHeight, Top:ptTop.Y };
|
|
33556
|
+
rtText.Bottom=rtText.Top+rtText.Height;
|
|
33557
|
+
}
|
|
33558
|
+
else
|
|
33559
|
+
{
|
|
33560
|
+
var rtText={ Width:textWidth, Height:textHeight, Bottom:ptTop.Y };
|
|
33561
|
+
rtText.Top=rtText.Bottom-rtText.Height;
|
|
33562
|
+
}
|
|
33563
|
+
|
|
33564
|
+
if (ptTop.Align=="left")
|
|
33565
|
+
{
|
|
33566
|
+
rtText.Left=left;
|
|
33567
|
+
rtText.Right=rtText.Left+rtText.Width;
|
|
33568
|
+
}
|
|
33569
|
+
else
|
|
33570
|
+
{
|
|
33571
|
+
rtText.Right=left;
|
|
33572
|
+
rtText.Left=rtText.Right-rtText.Width;
|
|
33573
|
+
}
|
|
33574
|
+
|
|
33490
33575
|
this.Canvas.fillText(text,left,ptTop.Y);
|
|
33491
|
-
this.ChartFrame.ChartKLine.Max={X:left, Y:ptTop.Y, Text: { BaseLine:'bottom'}};
|
|
33576
|
+
this.ChartFrame.ChartKLine.Max={X:left, Y:ptTop.Y, Text: { BaseLine:'bottom'}, Rect:rtText };
|
|
33492
33577
|
}
|
|
33493
33578
|
|
|
33494
33579
|
var ptBottom=ptMin;
|
|
@@ -33517,8 +33602,33 @@ function ChartKLine()
|
|
|
33517
33602
|
else text=text+rightArrow;
|
|
33518
33603
|
if (ptBottom.Y<(bottom+1))
|
|
33519
33604
|
{
|
|
33605
|
+
var textSize=GetTextSize(this.Canvas,text);
|
|
33606
|
+
var textWidth=textSize.Width;
|
|
33607
|
+
var textHeight=textSize.Height;
|
|
33608
|
+
if (this.ChartFrame.CoordinateType==1) //反转坐标
|
|
33609
|
+
{
|
|
33610
|
+
var rtText={ Width:textWidth, Height:textHeight, Bottom:ptBottom.Y };
|
|
33611
|
+
rtText.Top=rtText.Bottom-rtText.Height;
|
|
33612
|
+
}
|
|
33613
|
+
else
|
|
33614
|
+
{
|
|
33615
|
+
var rtText={ Width:textWidth, Height:textHeight, Top:ptBottom.Y };
|
|
33616
|
+
rtText.Bottom=rtText.Top+rtText.Height;
|
|
33617
|
+
}
|
|
33618
|
+
|
|
33619
|
+
if (ptBottom.Align=="left")
|
|
33620
|
+
{
|
|
33621
|
+
rtText.Left=left;
|
|
33622
|
+
rtText.Right=rtText.Left+rtText.Width;
|
|
33623
|
+
}
|
|
33624
|
+
else
|
|
33625
|
+
{
|
|
33626
|
+
rtText.Right=left;
|
|
33627
|
+
rtText.Left=rtText.Right-rtText.Width;
|
|
33628
|
+
}
|
|
33629
|
+
|
|
33520
33630
|
this.Canvas.fillText(text,left,ptBottom.Y);
|
|
33521
|
-
this.ChartFrame.ChartKLine.Min={X:left, Y:ptBottom.Y, Text:{ BaseLine:'top'}};
|
|
33631
|
+
this.ChartFrame.ChartKLine.Min={X:left, Y:ptBottom.Y, Text:{ BaseLine:'top'}, Rect:rtText };
|
|
33522
33632
|
}
|
|
33523
33633
|
}
|
|
33524
33634
|
|
|
@@ -35605,7 +35715,99 @@ function ChartKLine()
|
|
|
35605
35715
|
}
|
|
35606
35716
|
}
|
|
35607
35717
|
}
|
|
35608
|
-
|
|
35718
|
+
|
|
35719
|
+
this.GetDaySummaryText=function()
|
|
35720
|
+
{
|
|
35721
|
+
var count=this.DaySummary.MapDate.size;
|
|
35722
|
+
if (count<=0) return null;
|
|
35723
|
+
if (!this.HQChart) return null;
|
|
35724
|
+
|
|
35725
|
+
var text;
|
|
35726
|
+
if (ChartData.IsMinutePeriod(this.Data.Period,true))
|
|
35727
|
+
{
|
|
35728
|
+
text=`${count}${g_JSChartLocalization.GetText('天',this.HQChart.LanguageID)}`;
|
|
35729
|
+
return text;
|
|
35730
|
+
}
|
|
35731
|
+
|
|
35732
|
+
if (ChartData.IsDayPeriod(this.Data.Period,true))
|
|
35733
|
+
{
|
|
35734
|
+
switch(this.Data.Period)
|
|
35735
|
+
{
|
|
35736
|
+
case 0:
|
|
35737
|
+
text=`${count}${g_JSChartLocalization.GetText('天',this.HQChart.LanguageID)}`;
|
|
35738
|
+
break;
|
|
35739
|
+
case 1:
|
|
35740
|
+
text=`${count}${g_JSChartLocalization.GetText('周',this.HQChart.LanguageID)}`;
|
|
35741
|
+
break;
|
|
35742
|
+
case 2:
|
|
35743
|
+
text=`${count}${g_JSChartLocalization.GetText('月',this.HQChart.LanguageID)}`;
|
|
35744
|
+
break;
|
|
35745
|
+
case 4:
|
|
35746
|
+
text=`${count}${g_JSChartLocalization.GetText('年',this.HQChart.LanguageID)}`;
|
|
35747
|
+
break;
|
|
35748
|
+
default:
|
|
35749
|
+
return null;
|
|
35750
|
+
}
|
|
35751
|
+
|
|
35752
|
+
return text;
|
|
35753
|
+
}
|
|
35754
|
+
|
|
35755
|
+
return null;
|
|
35756
|
+
}
|
|
35757
|
+
|
|
35758
|
+
this.DrawDaySummary=function()
|
|
35759
|
+
{
|
|
35760
|
+
if (!this.DaySummary.Enable) return;
|
|
35761
|
+
if (this.ChartFrame.IsHScreen===true) return;
|
|
35762
|
+
|
|
35763
|
+
var text=this.GetDaySummaryText();
|
|
35764
|
+
if (!text) return;
|
|
35765
|
+
|
|
35766
|
+
this.Canvas.font=this.DaySummaryConfig.Font;
|
|
35767
|
+
|
|
35768
|
+
this.Canvas.textAlign = 'left';
|
|
35769
|
+
this.Canvas.textBaseline = 'bottom';
|
|
35770
|
+
|
|
35771
|
+
var border=this.ChartBorder.GetBorder();
|
|
35772
|
+
var xText=border.Left+1;
|
|
35773
|
+
var yText=border.Bottom;
|
|
35774
|
+
|
|
35775
|
+
var textSize=GetTextSize(this.Canvas,text);
|
|
35776
|
+
var textWidth=textSize.Width;
|
|
35777
|
+
var textHeight=textSize.Height;
|
|
35778
|
+
|
|
35779
|
+
var rtText={ Left:xText, Bottom:yText, Width:textWidth, Height:textHeight };
|
|
35780
|
+
rtText.Right=rtText.Left+rtText.Width;
|
|
35781
|
+
rtText.Top=rtText.Bottom-rtText.Height;
|
|
35782
|
+
|
|
35783
|
+
if (this.ChartFrame.ChartKLine.Max && this.ChartFrame.ChartKLine.Max.Rect)
|
|
35784
|
+
{
|
|
35785
|
+
var rtMax=this.ChartFrame.ChartKLine.Max.Rect;
|
|
35786
|
+
if (IsRectOverlap(rtText,rtMax))
|
|
35787
|
+
{
|
|
35788
|
+
rtText.Left=rtMax.Right+2;
|
|
35789
|
+
rtText.Right=rtText.Left+rtText.Width;
|
|
35790
|
+
}
|
|
35791
|
+
}
|
|
35792
|
+
|
|
35793
|
+
if (this.ChartFrame.ChartKLine.Min && this.ChartFrame.ChartKLine.Min.Rect)
|
|
35794
|
+
{
|
|
35795
|
+
var rtMin=this.ChartFrame.ChartKLine.Min.Rect;
|
|
35796
|
+
if (IsRectOverlap(rtText,rtMin))
|
|
35797
|
+
{
|
|
35798
|
+
rtText.Left=rtMin.Right+2;
|
|
35799
|
+
rtText.Right=rtText.Left+rtText.Width;
|
|
35800
|
+
}
|
|
35801
|
+
}
|
|
35802
|
+
|
|
35803
|
+
//this.Canvas.fillStyle="rgb(100,0,100)";
|
|
35804
|
+
//this.Canvas.fillRect(rtText.Left,rtText.Top,rtText.Width,rtText.Height);
|
|
35805
|
+
|
|
35806
|
+
this.Canvas.fillStyle=this.DaySummaryConfig.TextColor;
|
|
35807
|
+
this.Canvas.fillText(text,rtText.Left,rtText.Bottom);
|
|
35808
|
+
|
|
35809
|
+
this.ClearDaySummary();
|
|
35810
|
+
}
|
|
35609
35811
|
}
|
|
35610
35812
|
|
|
35611
35813
|
function ChartColorKline()
|
|
@@ -51552,6 +51754,7 @@ function StockChip()
|
|
|
51552
51754
|
this.DefaultButton=CloneData(g_JSChartResource.StockChip.DefaultButton); //默认筹码分布图
|
|
51553
51755
|
this.LongButton=CloneData(g_JSChartResource.StockChip.LongButton); //远期筹码分布图
|
|
51554
51756
|
this.RecentButton=CloneData(g_JSChartResource.StockChip.RecentButton); //近期筹码分布图
|
|
51757
|
+
this.CloseButton=CloneData(g_JSChartResource.StockChip.CloseButton); //关闭按钮
|
|
51555
51758
|
this.ButtonTooltip=CloneData(g_JSChartResource.Buttons.Tooltip);
|
|
51556
51759
|
|
|
51557
51760
|
this.DAY_COLOR=
|
|
@@ -51581,6 +51784,7 @@ function StockChip()
|
|
|
51581
51784
|
this.DefaultButton=CloneData(g_JSChartResource.StockChip.DefaultButton); //默认筹码分布图
|
|
51582
51785
|
this.LongButton=CloneData(g_JSChartResource.StockChip.LongButton); //远期筹码分布图
|
|
51583
51786
|
this.RecentButton=CloneData(g_JSChartResource.StockChip.RecentButton); //近期筹码分布图
|
|
51787
|
+
this.CloseButton=CloneData(g_JSChartResource.StockChip.CloseButton);
|
|
51584
51788
|
this.ButtonTooltip=CloneData(g_JSChartResource.Buttons.Tooltip);
|
|
51585
51789
|
}
|
|
51586
51790
|
|
|
@@ -51738,9 +51942,11 @@ function StockChip()
|
|
|
51738
51942
|
|
|
51739
51943
|
var aryButton=
|
|
51740
51944
|
[
|
|
51945
|
+
{ID:JSCHART_BUTTON_ID.CHIP_CLOSE, Style:this.CloseButton },
|
|
51741
51946
|
{ID:JSCHART_BUTTON_ID.CHIP_RECENT, Style: this.RecentButton, ShowType:2 },
|
|
51742
51947
|
{ID:JSCHART_BUTTON_ID.CHIP_LONG, Style: this.LongButton , ShowType:1},
|
|
51743
|
-
{ID:JSCHART_BUTTON_ID.CHIP_DEFULT, Style: this.DefaultButton, ShowType:0 }
|
|
51948
|
+
{ID:JSCHART_BUTTON_ID.CHIP_DEFULT, Style: this.DefaultButton, ShowType:0 },
|
|
51949
|
+
|
|
51744
51950
|
];
|
|
51745
51951
|
|
|
51746
51952
|
//右往左绘制
|
|
@@ -77685,6 +77891,12 @@ function JSChartResource()
|
|
|
77685
77891
|
Text:{ Color:"rgb(105,105,105)", Font:`${12*GetDevicePixelRatio()}px 微软雅黑`}
|
|
77686
77892
|
};
|
|
77687
77893
|
|
|
77894
|
+
this.DaySummaryKLine=
|
|
77895
|
+
{
|
|
77896
|
+
Font:`${12*GetDevicePixelRatio()}px 微软雅黑`,
|
|
77897
|
+
TextColor:"rgb(105,105,105)"
|
|
77898
|
+
}
|
|
77899
|
+
|
|
77688
77900
|
//订单流配置
|
|
77689
77901
|
this.OrderFlow=
|
|
77690
77902
|
{
|
|
@@ -78379,6 +78591,17 @@ function JSChartResource()
|
|
|
78379
78591
|
MerginLeft:4
|
|
78380
78592
|
},
|
|
78381
78593
|
|
|
78594
|
+
CloseButton:
|
|
78595
|
+
{
|
|
78596
|
+
Color:"rgb(128,128,128)",
|
|
78597
|
+
MoveOnColor:'rgb(30,144,255)',
|
|
78598
|
+
SelectedColor:"rgb(0,0,204)",
|
|
78599
|
+
Family:"iconfont",
|
|
78600
|
+
Text:"\ue60c",
|
|
78601
|
+
Size:13*GetDevicePixelRatio(),
|
|
78602
|
+
MerginLeft:4
|
|
78603
|
+
},
|
|
78604
|
+
|
|
78382
78605
|
//手机端
|
|
78383
78606
|
PhoneCloseButton:
|
|
78384
78607
|
{
|
|
@@ -79125,6 +79348,14 @@ function JSChartResource()
|
|
|
79125
79348
|
}
|
|
79126
79349
|
}
|
|
79127
79350
|
|
|
79351
|
+
if (style.DaySummaryKLine)
|
|
79352
|
+
{
|
|
79353
|
+
var item=style.DaySummaryKLine;
|
|
79354
|
+
var dest=this.DaySummaryKLine;
|
|
79355
|
+
if (item.Font) dest.Font=item.Font;
|
|
79356
|
+
if (item.TextColor) dest.TextColor=item.TextColor;
|
|
79357
|
+
}
|
|
79358
|
+
|
|
79128
79359
|
if (style.Index)
|
|
79129
79360
|
{
|
|
79130
79361
|
if (style.Index.LineColor) this.Index.LineColor = style.Index.LineColor;
|
|
@@ -80666,12 +80897,20 @@ function JSChartLocalization()
|
|
|
80666
80897
|
["Toolbar-"+JSCHART_BUTTON_ID.CHIP_RECENT, {CN:"近期成本分布", EN:"Recent chip", TC:"近期成本分布"}],
|
|
80667
80898
|
["Toolbar-"+JSCHART_BUTTON_ID.CHIP_LONG, {CN:"远期成本分布", EN:"Long chip", TC:"远期成本分布"}],
|
|
80668
80899
|
["Toolbar-"+JSCHART_BUTTON_ID.CHIP_DEFULT, {CN:"默认筹码分布", EN:"Default chip", TC:"默认筹码分布"}],
|
|
80900
|
+
["Toolbar-"+JSCHART_BUTTON_ID.CHIP_CLOSE, {CN:"关闭筹码图", EN:"Close chip", TC:"关闭筹码图"}],
|
|
80669
80901
|
["Toolbar-"+JSCHART_BUTTON_ID.DRAW_PICTURE_DELETE, {CN:"删除", EN:"Delete", TC:"删除"}],
|
|
80670
80902
|
["Toolbar-"+JSCHART_BUTTON_ID.DRAW_PICTURE_SETTING, {CN:"设置", EN:"Setting", TC:"设置"}],
|
|
80671
80903
|
|
|
80672
80904
|
//日盘|夜盘
|
|
80673
80905
|
["日盘",{CN:'日盘', EN:'Day', TC:'日盤'}],
|
|
80674
|
-
["夜盘",{CN:'夜盘', EN:'Night', TC:'夜盤'} ]
|
|
80906
|
+
["夜盘",{CN:'夜盘', EN:'Night', TC:'夜盤'} ],
|
|
80907
|
+
|
|
80908
|
+
|
|
80909
|
+
["天", {CN:'天', EN:'Day', TC:'天'} ],
|
|
80910
|
+
["周", {CN:'周', EN:'Week', TC:'周'} ],
|
|
80911
|
+
["月", {CN:'月', EN:'Month', TC:'月'} ],
|
|
80912
|
+
["年", {CN:'年', EN:'Year', TC:'年'} ],
|
|
80913
|
+
|
|
80675
80914
|
]);
|
|
80676
80915
|
|
|
80677
80916
|
this.GetText=function(key,language)
|
|
@@ -82856,6 +83095,7 @@ function KLineChartContainer(uielement,OffscreenElement, cacheElement)
|
|
|
82856
83095
|
kline.Name="Main-KLine";
|
|
82857
83096
|
kline.DrawType=this.KLineDrawType;
|
|
82858
83097
|
kline.Identify="Main-KLine";
|
|
83098
|
+
kline.HQChart=this;
|
|
82859
83099
|
kline.GetEventCallback=(id)=>{ return this.GetEventCallback(id); };
|
|
82860
83100
|
|
|
82861
83101
|
this.ChartPaint[0]=kline;
|
|
@@ -87415,6 +87655,7 @@ function KLineChartContainer(uielement,OffscreenElement, cacheElement)
|
|
|
87415
87655
|
var klineType=klineChart.DrawType;
|
|
87416
87656
|
var bThinAKBar=klineChart.IsThinAKBar;
|
|
87417
87657
|
var priceGap=klineChart.PriceGap; //缺口配置信息
|
|
87658
|
+
var bDaySummary=klineChart.DaySummary.Enable;
|
|
87418
87659
|
var infoPosition=klineChart.InfoPosition;
|
|
87419
87660
|
var coordinateType=null, yCoordinateType=null; //坐标类型
|
|
87420
87661
|
var mainFrame=null;
|
|
@@ -87662,6 +87903,8 @@ function KLineChartContainer(uielement,OffscreenElement, cacheElement)
|
|
|
87662
87903
|
|
|
87663
87904
|
{ Name:"双击弹分时图", Data:{ ID:JSCHART_MENU_ID.CMD_ENABLE_POP_MINUTE_CHART_ID, Args:[!bPopMinuteChart]}, Checked:bPopMinuteChart},
|
|
87664
87905
|
|
|
87906
|
+
{ Name:"显示走完剩余时间", Data:{ ID:JSCHART_MENU_ID.CMD_ENABLE_KLINE_DAY_SUMMARY_ID, Args:[!bDaySummary]}, Checked:bDaySummary},
|
|
87907
|
+
|
|
87665
87908
|
{ Name:JSPopMenu.SEPARATOR_LINE_NAME },
|
|
87666
87909
|
{
|
|
87667
87910
|
Name:"鼠标形状",
|
|
@@ -131512,6 +131755,13 @@ function GetBlackStyle()
|
|
|
131512
131755
|
Text:{ Color:"rgb(219,220,220)", Font:`${12*GetDevicePixelRatio()}px 微软雅黑` }
|
|
131513
131756
|
},
|
|
131514
131757
|
|
|
131758
|
+
DaySummaryKLine:
|
|
131759
|
+
{
|
|
131760
|
+
//Font:`${12*GetDevicePixelRatio()}px 微软雅黑`,
|
|
131761
|
+
TextColor:"rgb(255,165,0)"
|
|
131762
|
+
},
|
|
131763
|
+
|
|
131764
|
+
|
|
131515
131765
|
//指标锁
|
|
131516
131766
|
IndexLock:
|
|
131517
131767
|
{
|
|
@@ -135778,6 +136028,16 @@ function JSReportChartContainer(uielement)
|
|
|
135778
136028
|
if (!reportChart) return;
|
|
135779
136029
|
|
|
135780
136030
|
var keyID = e.keyCode ? e.keyCode :e.which;
|
|
136031
|
+
|
|
136032
|
+
//回调事件
|
|
136033
|
+
var event=this.GetEventCallback(JSCHART_EVENT_ID.ON_KEYDOWN);
|
|
136034
|
+
if (event && event.Callback)
|
|
136035
|
+
{
|
|
136036
|
+
var sendData={ e:e, KeyID:keyID, PreventDefault:false, ReportChart:reportChart };
|
|
136037
|
+
event.Callback(event, sendData, this);
|
|
136038
|
+
if (sendData.PreventDefault) return;
|
|
136039
|
+
}
|
|
136040
|
+
|
|
135781
136041
|
if (keyID==116) return; //F15刷新不处理
|
|
135782
136042
|
|
|
135783
136043
|
this.HideAllTooltip();
|
|
@@ -144934,6 +145194,16 @@ function JSTReportChartContainer(uielement)
|
|
|
144934
145194
|
if (!reportChart) return;
|
|
144935
145195
|
|
|
144936
145196
|
var keyID = e.keyCode ? e.keyCode :e.which;
|
|
145197
|
+
|
|
145198
|
+
//回调事件
|
|
145199
|
+
var event=this.GetEventCallback(JSCHART_EVENT_ID.ON_KEYDOWN);
|
|
145200
|
+
if (event && event.Callback)
|
|
145201
|
+
{
|
|
145202
|
+
var sendData={ e:e, KeyID:keyID, PreventDefault:false, ReportChart:reportChart };
|
|
145203
|
+
event.Callback(event, sendData, this);
|
|
145204
|
+
if (sendData.PreventDefault) return;
|
|
145205
|
+
}
|
|
145206
|
+
|
|
144937
145207
|
if (keyID==116) return; //F15刷新不处理
|
|
144938
145208
|
|
|
144939
145209
|
this.HideMinuteChartTooltip();
|
|
@@ -146521,6 +146791,89 @@ function ChartTReport()
|
|
|
146521
146791
|
return null;
|
|
146522
146792
|
}
|
|
146523
146793
|
|
|
146794
|
+
//获取一行位置 option={ Symbol:, RowIndex:}
|
|
146795
|
+
this.GetRowRect=function(option)
|
|
146796
|
+
{
|
|
146797
|
+
if (!this.Data) return null;
|
|
146798
|
+
if (!IFrameSplitOperator.IsNonEmptyArray(this.Data.Data)) return null;
|
|
146799
|
+
|
|
146800
|
+
var symbol=null;
|
|
146801
|
+
var rowIndex=null;
|
|
146802
|
+
if (option)
|
|
146803
|
+
{
|
|
146804
|
+
if (option.Symbol) symbol=option.Symbol;
|
|
146805
|
+
if (IFrameSplitOperator.IsNumber(option.RowIndex)) rowIndex=option.RowIndex;
|
|
146806
|
+
}
|
|
146807
|
+
var top=this.RectClient.Top+this.HeaderHeight;
|
|
146808
|
+
var left=this.RectClient.Left;
|
|
146809
|
+
var right=this.RectClient.Right;
|
|
146810
|
+
|
|
146811
|
+
var textTop=top+this.FixedRowHeight*this.FixedRowCount;
|
|
146812
|
+
for(var i=this.Data.YOffset, j=0; i<this.Data.Data.length && j<this.RowCount ;++i, ++j, textTop+=this.RowHeight)
|
|
146813
|
+
{
|
|
146814
|
+
var exePrice=this.Data.Data[i];
|
|
146815
|
+
var rtRow={ Left:left, Top:textTop, Right:right, Bottom: textTop+this.RowHeight };
|
|
146816
|
+
rtRow.Height=rtRow.Bottom-rtRow.Top;
|
|
146817
|
+
rtRow.Width=rtRow.Right-rtRow.Left;
|
|
146818
|
+
|
|
146819
|
+
var data={ RectRow:rtRow, DataIndex:i, Index:j, ExePrice:exePrice };
|
|
146820
|
+
var item=this.GetExePriceDataCallback(exePrice);
|
|
146821
|
+
if (!item) continue;
|
|
146822
|
+
|
|
146823
|
+
var bLeftFind=false, bRightFind=false;
|
|
146824
|
+
if (symbol)
|
|
146825
|
+
{
|
|
146826
|
+
if (item.LeftData && item.LeftData.Symbol && item.LeftData.Symbol==symbol) bLeftFind=true;
|
|
146827
|
+
if (item.RightData && item.RightData.Symbol && item.RightData.Symbol==symbol) bRightFind=true;
|
|
146828
|
+
}
|
|
146829
|
+
else if (IFrameSplitOperator.IsNumber(rowIndex))
|
|
146830
|
+
{
|
|
146831
|
+
if (rowIndex==i)
|
|
146832
|
+
{
|
|
146833
|
+
bLeftFind=true;
|
|
146834
|
+
bRightFind=true;
|
|
146835
|
+
}
|
|
146836
|
+
}
|
|
146837
|
+
|
|
146838
|
+
if (bLeftFind || bRightFind)
|
|
146839
|
+
{
|
|
146840
|
+
data.Item=item;
|
|
146841
|
+
data.AryLeftRect=[];
|
|
146842
|
+
data.AryRightRect=[];
|
|
146843
|
+
data.ElementRect=this.UIElement.getBoundingClientRect();
|
|
146844
|
+
data.PixelRatio=GetDevicePixelRatio();
|
|
146845
|
+
|
|
146846
|
+
var rtCenterItem=this.GetCenterItemRect();
|
|
146847
|
+
var rtCenter={Left:rtCenterItem.Left, Right:rtCenterItem.Right, Top:rtRow.Top, Height:rtRow.Height, Bottom:rtRow.Bottom };
|
|
146848
|
+
|
|
146849
|
+
var xLeft=rtCenterItem.Left; //左边
|
|
146850
|
+
var xRight=rtCenterItem.Right; //右边
|
|
146851
|
+
|
|
146852
|
+
var reportleft=this.RectClient.Left;
|
|
146853
|
+
var reportRight=this.RectClient.Right;
|
|
146854
|
+
for(var k=this.Data.XOffset;k<this.Column.length;++k)
|
|
146855
|
+
{
|
|
146856
|
+
var colItem=this.Column[k];
|
|
146857
|
+
var itemWidth=colItem.Width+this.ItemExtraWidth;
|
|
146858
|
+
xLeft-=itemWidth;
|
|
146859
|
+
if (xLeft<reportleft) break;
|
|
146860
|
+
|
|
146861
|
+
var rtItem={ Left:xLeft, Right:xLeft+itemWidth, Top:rtRow.Top, Height:rtRow.Height, Bottom:rtRow.Bottom, Width:itemWidth };
|
|
146862
|
+
data.AryLeftRect.push({ Rect:rtItem, ColumnIndex:k, Column:colItem })
|
|
146863
|
+
|
|
146864
|
+
rtItem={ Left:xRight, Right:xRight+itemWidth, Top:rtRow.Top, Height:rtRow.Height, Bottom:rtRow.Bottom, Width:itemWidth };
|
|
146865
|
+
data.AryRightRect.push({ Rect:rtItem, ColumnIndex:k, Column:colItem });
|
|
146866
|
+
|
|
146867
|
+
xRight+=itemWidth;
|
|
146868
|
+
}
|
|
146869
|
+
|
|
146870
|
+
return data;
|
|
146871
|
+
}
|
|
146872
|
+
}
|
|
146873
|
+
|
|
146874
|
+
return null;
|
|
146875
|
+
}
|
|
146876
|
+
|
|
146524
146877
|
this.PtInBody=function(x,y)
|
|
146525
146878
|
{
|
|
146526
146879
|
if (!this.Data) return null;
|
|
@@ -157522,7 +157875,7 @@ function HQChartScriptWorker()
|
|
|
157522
157875
|
|
|
157523
157876
|
|
|
157524
157877
|
|
|
157525
|
-
var HQCHART_VERSION="1.1.
|
|
157878
|
+
var HQCHART_VERSION="1.1.14662";
|
|
157526
157879
|
|
|
157527
157880
|
function PrintHQChartVersion()
|
|
157528
157881
|
{
|