hqchart 1.1.13401 → 1.1.13403
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
CHANGED
|
@@ -5896,7 +5896,7 @@ this.SetOption=function(option){if(this.Super_SetOption)this.Super_SetOption(opt
|
|
|
5896
5896
|
this.GetShowButton=function(){var aryButton=[];var item=this.Button.SettingIcon;if(item&&item.Text)aryButton.push({Data:item,Width:null});item=this.Button.CloseIcon;if(item&&item.Text)aryButton.push({Data:item,Width:null});if(IFrameSplitOperator.IsNonEmptyArray(this.CustomButton)){for(var i=0;i<this.CustomButton.length;++i){item=this.CustomButton[i];if(item&&item.Text)aryButton.push({Data:item,Width:null});}}return aryButton;};this.Draw=function(moveonPoint,mouseStatus){this.AryShowButton=[];this.LinePoint=[];this.AryButton=[];this.ColseButtonSize=0;this.SettingButtonSize=0;this.ButtonBGWidth=0;this.VerticalButtonInfo.Width=0;this.VerticalButtonInfo.Height=0;if(this.IsFrameMinSize())return;if(!this.IsShow)return;var drawPoint=this.CalculateDrawPoint();if(!drawPoint||drawPoint.length!=1)return;if(!this.Frame)return;if(this.Value.length!=1)return;var bVisibleRange=this.IsYValueInFrame(this.Value[0].YValue);//是否在可视范围
|
|
5897
5897
|
if(!this.AlwaysShowLab&&!bVisibleRange)return;var isHScreen=this.Frame.IsHScreen;var left=this.Frame.ChartBorder.GetLeft();var right=this.Frame.ChartBorder.GetRight();if(isHScreen){left=this.Frame.ChartBorder.GetTop();right=this.Frame.ChartBorder.GetBottom();}this.ClipFrame();//画线段
|
|
5898
5898
|
if(bVisibleRange){this.Canvas.strokeStyle=this.LineColor;this.SetLineWidth();this.Canvas.beginPath();if(isHScreen){this.Canvas.moveTo(drawPoint[0].X,left);this.Canvas.lineTo(drawPoint[0].X,right);}else{this.Canvas.moveTo(left,ToFixedPoint(drawPoint[0].Y));this.Canvas.lineTo(right,ToFixedPoint(drawPoint[0].Y));}this.Canvas.stroke();this.RestoreLineWidth();}//画水平线段
|
|
5899
|
-
|
|
5899
|
+
var line={Start:new Point(),End:new Point()};if(isHScreen){line.Start.X=drawPoint[0].X;line.Start.Y=left;line.End.X=drawPoint[0].X;line.End.Y=right;}else{line.Start.X=left;line.Start.Y=drawPoint[0].Y;line.End.X=right;line.End.Y=drawPoint[0].Y;}this.LinePoint.push(line);if(bVisibleRange){var yValue=this.Frame.GetYData(drawPoint[0].Y,false);var strPrice=yValue.toFixed(this.Precision);if(this.ShowPriceTextConfig.IsShow[0]){this.DrawPriceText(strPrice,line.Start,line.End,0);}if(this.ShowPriceTextConfig.IsShow[1]){this.DrawPriceText(strPrice,line.Start,line.End,1);}}var labInfo;if(this.GetLabelCallback)labInfo=this.GetLabelCallback(this);this.AryShowButton=this.GetShowButton();//获取按钮
|
|
5900
5900
|
//框架内的描述信息
|
|
5901
5901
|
if(labInfo&&bVisibleRange)this.DrawLab(labInfo,drawPoint[0].Y);//画中心点
|
|
5902
5902
|
if(bVisibleRange){var xCenter=left+(right-left)/2;var point={X:xCenter,Y:drawPoint[0].Y};this.DrawPoint([point]);}this.Canvas.restore();//外部右侧显示价格
|
|
@@ -5906,7 +5906,7 @@ if(labInfo.BGColor){this.Canvas.fillStyle=labInfo.BGColor;var rtTop=y-labSize.He
|
|
|
5906
5906
|
var rtLab={Left:drawLeft,Top:drawTop,Width:labSize.Width,Height:labSize.Height};rtLab.Right=rtLab.Left+rtLab.Width;rtLab.Bottom=rtLab.Top+rtLab.Height;if(labInfo.BGColor){this.Canvas.fillStyle=labInfo.BGColor;this.Canvas.fillRect(ToFixedRect(rtLab.Left),ToFixedRect(rtLab.Top),ToFixedRect(rtLab.Width),ToFixedRect(rtLab.Height));}var yText=drawTop+1+lineSpace;this.Canvas.textBaseline="top";for(var i=0;i<labInfo.AryText.length;++i){var item=labInfo.AryText[i];if(item.Name){this.Canvas.textAlign="left";this.Canvas.fillStyle=item.NameColor;this.Canvas.fillText(item.Name,drawLeft+1,yText+1);}if(item.Text){this.Canvas.textAlign="right";this.Canvas.fillStyle=item.TextColor;this.Canvas.fillText(item.Text,drawRight-1,yText+1);}yText+=labSize.LineHeight+lineSpace;}this.DrawVerticalButton(rtLab);};this.DrawCustomHLine=function(labInfo,yLine){if(!labInfo)return;if(!IFrameSplitOperator.IsNonEmptyArray(labInfo.AryLine))return;var left=this.Frame.ChartBorder.GetLeft();var right=this.Frame.ChartBorder.GetRight();var pixelRatio=GetDevicePixelRatio();var yMax=yLine,yMin=yLine;for(var i=0;i<labInfo.AryLine.length;++i){var item=labInfo.AryLine[i];if(!IFrameSplitOperator.IsNumber(item.Value))continue;if(item.Width<0)continue;var y=this.Frame.GetYFromData(item.Value);var yFixed=ToFixedPoint(y);var xRight=right;if(IFrameSplitOperator.IsPlusNumber(item.Width)){if(item.Width<1)xRight=left+item.Width*(right-left);//0.3 百分比
|
|
5907
5907
|
else xRight=left+item.Width*pixelRatio;//>1 实际数值就是长度
|
|
5908
5908
|
}if(item.Color)this.Canvas.strokeStyle=item.Color;else this.Canvas.strokeStyle=this.LineColor;this.Canvas.beginPath();this.Canvas.moveTo(left,yFixed);this.Canvas.lineTo(xRight,yFixed);this.Canvas.stroke();if(yMax<yFixed)yMax=yFixed;if(yMin>yFixed)yMin=yFixed;}if(yMax!=yMin&&labInfo.VLine){var item=labInfo.VLine;var x=left+20*pixelRatio;if(IFrameSplitOperator.IsNumber(item.XOffset))x=left+item.XOffset*pixelRatio;x=ToFixedPoint(x);if(item.Color)this.Canvas.strokeStyle=item.Color;else this.Canvas.strokeStyle=this.LineColor;this.Canvas.beginPath();this.Canvas.moveTo(x,yMax);this.Canvas.lineTo(x,yMin);this.Canvas.stroke();}};this.DrawValueText=function(y,rtDraw,labInfo){var left=this.Frame.ChartBorder.GetLeft();var right=this.Frame.ChartBorder.GetRight();var top=this.Frame.ChartBorder.GetTopEx();var bottom=this.Frame.ChartBorder.GetBottomEx();var pixelTatio=GetDevicePixelRatio();if(IFrameSplitOperator.IsNumber(labInfo.TopOffset))top-=labInfo.TopOffset;if(IFrameSplitOperator.IsNumber(labInfo.BottomOffset))bottom+=labInfo.BottomOffset;var yValue=this.Frame.GetYData(y,false);var strValue=yValue.toFixed(this.Precision);if(labInfo&&labInfo.PriceSuffixText)strValue+=labInfo.PriceSuffixText;var bVisibleRange=true;if(y<top){y=top;bVisibleRange=false;}else if(y>bottom){y=bottom;bVisibleRange=false;}if(this.RightSpaceWidth>0){if(!bVisibleRange)this.Canvas.setLineDash([2*pixelTatio,3*pixelTatio]);//虚线
|
|
5909
|
-
this.Canvas.strokeStyle=this.LineColor;this.Canvas.beginPath();this.Canvas.moveTo(right,ToFixedPoint(y));this.Canvas.lineTo(right+this.RightSpaceWidth,ToFixedPoint(y));this.Canvas.stroke();}this.Canvas.fillStyle=this.LineColor;this.Canvas.font=this.Font;var textWidth=this.Canvas.measureText(strValue).width;var lineHeight=this.GetFontHeight();var rtBG={Left:right+this.RightSpaceWidth,Top:y-lineHeight/2,Width:textWidth+4,Height:lineHeight};//rtBG.Right=rtBG.Left+rtBG.Width;
|
|
5909
|
+
this.Canvas.strokeStyle=this.LineColor;this.Canvas.beginPath();this.Canvas.moveTo(right,ToFixedPoint(y));this.Canvas.lineTo(right+this.RightSpaceWidth,ToFixedPoint(y));this.Canvas.stroke();if(!bVisibleRange)this.Canvas.setLineDash([]);}this.Canvas.fillStyle=this.LineColor;this.Canvas.font=this.Font;var textWidth=this.Canvas.measureText(strValue).width;var lineHeight=this.GetFontHeight();var rtBG={Left:right+this.RightSpaceWidth,Top:y-lineHeight/2,Width:textWidth+4,Height:lineHeight};//rtBG.Right=rtBG.Left+rtBG.Width;
|
|
5910
5910
|
rtBG.Bottom=rtBG.Top+rtBG.Height;rtBG.Width+=this.TextMargin.Left+this.TextMargin.Right;rtBG.Right=rtBG.Left+rtBG.Width;var xText=rtBG.Left+this.TextMargin.Left+2;if(this.ButtonPosition==1){this.Canvas.fillRect(ToFixedRect(rtBG.Left),ToFixedRect(rtBG.Top),ToFixedRect(rtBG.Width+this.ButtonBGWidth),ToFixedRect(rtBG.Height));}else{this.Canvas.fillRect(ToFixedRect(rtBG.Left),ToFixedRect(rtBG.Top),ToFixedRect(rtBG.Width),ToFixedRect(rtBG.Height));}this.Canvas.fillStyle=this.ValueTextColor;this.Canvas.textAlign="left";this.Canvas.textBaseline="middle";this.Canvas.fillText(strValue,xText,y);rtDraw.Left=rtBG.Left;rtDraw.Top=rtBG.Top;rtDraw.Bottom=rtBG.Bottom;rtDraw.Right=rtBG.Right;this.DrawButton(rtBG.Top,rtBG.Right,lineHeight,rtDraw);};this.DrawPriceText=function(text,ptStart,ptEnd,position){if(position!=1&&position!=0)return;var font=this.ShowPriceTextConfig.Font[position];this.Canvas.fillStyle=this.LineColor;this.Canvas.font=font;var textWidth=this.Canvas.measureText(text).width;var lineHeight=this.GetFontHeight();var rtBG=null;if(position==1){var rtBG={Left:ptStart.X,Top:ptStart.Y-lineHeight/2,Width:textWidth+4,Height:lineHeight};rtBG.Right=rtBG.Left+rtBG.Width;rtBG.Bottom=rtBG.Top+rtBG.Height;}else if(position==0){var rtBG={Right:ptEnd.X,Top:ptEnd.Y-lineHeight/2,Width:textWidth+4,Height:lineHeight};rtBG.Left=rtBG.Right-rtBG.Width;rtBG.Bottom=rtBG.Top+rtBG.Height;}this.Canvas.fillRect(ToFixedRect(rtBG.Left),ToFixedRect(rtBG.Top),ToFixedRect(rtBG.Width+this.ButtonBGWidth),ToFixedRect(rtBG.Height));this.Canvas.fillStyle=this.ValueTextColor;this.Canvas.textAlign="left";this.Canvas.textBaseline="middle";this.Canvas.fillText(text,rtBG.Left+2,ptStart.Y);};this.CalculateButtonSize=function(){var pixelRatio=GetDevicePixelRatio();if(!IFrameSplitOperator.IsNonEmptyArray(this.AryShowButton))return;var totalWidth=0;for(var i=0;i<this.AryShowButton.length;++i){var item=this.AryShowButton[i];var icon=item.Data;var font=icon.Size*pixelRatio+'px '+icon.Family;this.Canvas.font=font;item.Width=this.Canvas.measureText(icon.Text).width+2;item.Height=item.Width;if(icon.Margin){var margin=icon.Margin;if(IFrameSplitOperator.IsNumber(margin.Left))item.Width+=margin.Left;if(IFrameSplitOperator.IsNumber(margin.Right))item.Width+=margin.Right;if(IFrameSplitOperator.IsNumber(margin.Top))item.Height+=margin.Top;if(IFrameSplitOperator.IsNumber(margin.Bottom))item.Height+=margin.Bottom;}if(this.VerticalButtonInfo.Width<item.Width)this.VerticalButtonInfo.Width=item.Width;this.VerticalButtonInfo.Height+=item.Height;totalWidth+=item.Width;}this.ButtonBGWidth=totalWidth;};//垂直排列按钮
|
|
5911
5911
|
this.DrawVerticalButton=function(rtLab){if(this.ButtonPosition!=3)return;if(!IFrameSplitOperator.IsNonEmptyArray(this.AryShowButton))return;if(this.VerticalButtonInfo.Height<=0)return;var rtBG={Left:rtLab.Right,Top:rtLab.Top,Width:this.VerticalButtonInfo.Width,Height:this.VerticalButtonInfo.Height};rtBG.Right=rtBG.Left+rtBG.Width;rtBG.Bottom=rtBG.Top+rtBG.Height;this.Canvas.fillStyle=this.ButtonBGColor;this.Canvas.fillRect(ToFixedRect(rtBG.Left),ToFixedRect(rtBG.Top),ToFixedRect(rtBG.Width),ToFixedRect(rtBG.Height));var pixelRatio=GetDevicePixelRatio();var yTop=rtLab.Top;for(var i=0;i<this.AryShowButton.length;++i){var item=this.AryShowButton[i];var icon=item.Data;var rtButton={Left:rtBG.Left,Top:yTop,Width:this.VerticalButtonInfo.Width,Height:item.Height};rtButton.Right=rtButton.Left+rtButton.Width;rtButton.Bottom=rtButton.Top+rtButton.Height;var yCenter=rtButton.Top+rtButton.Height/2;var xCenter=rtButton.Left+rtButton.Width/2;var font=icon.Size*pixelRatio+'px '+icon.Family;this.Canvas.font=font;this.Canvas.textAlign="center";this.Canvas.textBaseline="middle";this.Canvas.fillStyle=icon.Color;this.Canvas.fillText(icon.Text,xCenter,yCenter);this.AryButton.push({Rect:rtButton,ID:icon.ID,TooltipText:icon.TooltipText,Data:icon.Data});yTop=rtButton.Bottom;}};this.DrawButton=function(drawTop,drawLeft,drawHeight,rtDraw){if(!IFrameSplitOperator.IsNonEmptyArray(this.AryShowButton))return;if(this.ButtonPosition==3)return;//垂直按钮在DrawVerticalButton()调用
|
|
5912
5912
|
if(this.ButtonPosition==1){drawTop-=drawHeight;var chartWidth=this.Frame.ChartBorder.GetChartWidth();var chartLeft=this.Frame.ChartBorder.GetRight()+this.RightSpaceWidth;if(drawLeft+this.ButtonBGWidth>chartWidth)//右边不够了 往左移动
|
|
@@ -13160,7 +13160,7 @@ hisData.Symbol=message.symbol;}var stockObj={HQDataType:HQ_DATA_TYPE.KLINE_ID,St
|
|
|
13160
13160
|
this.ExecuteScript(item,data);}this.Status=0;}};this.OnExecuteFinish=function(data,indexInfo,jsExectute,jobInfo){var message={Data:data,IndexInfo:indexInfo,ID:JSCHART_WORKER_MESSAGE_ID.FINISH_EXECUTE_SCRIPT,JobInfo:jobInfo};postMessage(message);};this.OnExecuteError=function(error,indexInfo,jobData){var message={IndexInfo:indexInfo,ID:JSCHART_WORKER_MESSAGE_ID.ERROR_EXECUTE_SCRIPT,Error:error};postMessage(message);};}/********************************************************************************
|
|
13161
13161
|
* 版本信息输出
|
|
13162
13162
|
*
|
|
13163
|
-
*/var HQCHART_VERSION="1.1.
|
|
13163
|
+
*/var HQCHART_VERSION="1.1.13402";function PrintHQChartVersion(){var logo='\n\n*************************************************************************************************************************************************************************** \n* \n* :%@@- \n* :@@@@- \n* =@@@@ :#@@@ .:+#@@@#=: :=*@@@@@@#+-. *@@@@. \n* :@@@@@ .@@@@@ .#@@@@@@@@@@@- +@@@@@@@@@@@@@+ @@@@@ -%@@* \n* +@@@@% #@@@@# *@@@@@@@@@@@@@@%. =@@@@@@@@@@@@@@@- @@@@@ -@@@@+ \n* %@@@@* @@@@@+ .%@@@@@@@@@@@@@@@@%: #@@@@@@@@@@@@@@@% @@@@# *@@@@= \n* @@@@@= @@@@@- .%@@@@@@@*++*%@@@@@@% .%@@@@@@@%*+==+**= -@@@@+ #@@@@- \n* @@@@@. @@@@@. #@@@@@%= =@@@@@@* %@@@@@@#: *@@@@- :::. .-+*###+: ::: .+##+: -%%@@@@@%%%% \n* .@@@@@ .@@@@@. +@@@@@% .@@@@@@ *@@@@@@: %@@@@: +@@@@@%. :%@@@@@@@@@@: *@@@ :@@@@@* @@@@@@@@@@@@ \n* :@@@@@ :@@@@@ @@@@@% :@@@@@+ @@@@@@: %@@@@-@@@@@@@@@. @@@@@@@@@@@@@. :@@@%-@@@@@@.:@@@@@@@@@@@# \n* -@@@@% -@@@@@ =@@@@@. %@@@@% %@@@@@- %@@@@@@@@@@@@@@* %@@@@@@@@@@@@+ -@@@@@@@@@@# -@@@@@@@@@@@. \n* +@@@@%=========#@@@@% @@@@@# :@@@@@ .@@@@@% @@@@@@@@%@@@@@@@ -%+:. .#@@@@* +@@@@@@@%%@. .::+@@@@#:: \n* #@@@@@@@@@@@@@@@@@@@# .@@@@@ .@@@@@ :@@@@@. @@@@@@#. #@@@@@. -@@@@* #@@@@@@: *@@@@+ \n* %@@@@@@@@@@@@@@@@@@@+ :@@@@@ .@@@@@ -@@@@@ @@@@@+ @@@@@. :@@@@* @@@@@% #@@@@- \n* @@@@@@@@@@@@@@@@@@@@: :@@@@% :@@@@@ +@@@@% -@@@@+ @@@@@ -@@@@+ @@@@@. @@@@@. \n* .@@@@@@@@@@@@@@@@@@@@ :@@@@% -@@@@% *@@@@% #@@@@. @@@@@ .=*#%%%@@@@@= :@@@@# @@@@@. \n* -@@@@@:::::::::=@@@@@ :@@@@@ @@@@@* +@@@@% @@@@@ @@@@% -#@@@@@@@@@@@@: -@@@@* @@@@@ \n* =@@@@% =@@@@% .@@@@@ :@@@@@. -@@@@% @@@@@ .@@@@* +@@@@@@@@@@@@@@. =@@@@+ .@@@@@ \n* +@@@@# +@@@@# @@@@@# %@@@@% :@@@@@ .@@@@% =@@@@= -@@@@@*-:..%@@@@ +@@@@= :@@@@# \n* *@@@@* *@@@@* +@@@@@: #@@@@@+ .@@@@@@ :@@@@% *@@@@- @@@@@. @@@@% #@@@@: =@@@@+ \n* %@@@@= %@@@@+ @@@@@@- .%@@@@@# #@@@@@# :@@@@% #@@@@: @@@@% @@@@* %@@@@. #@@@@- \n* @@@@@- @@@@@= =@@@@@@#=...-*@@@@@@@: @@@@@@%=. :+**. :@@@@* %@@@@. .@@@@* *@@@@= @@@@@ %@@@@+ \n* .@@@@@: .@@@@@: *@@@@@@@@@@@@@@@@@@@# =@@@@@@@@%%%@@@@@@ +@@@@- @@@@@ .@@@@@: :%@@@@@- .@@@@% %@@@@@*+- \n* :@@@@@ :@@@@@ +@@@@@@@@@@@@@@@@@@@# =@@@@@@@@@@@@@@@@% %@@@@ @@@@@ @@@@@@@@@@@@@@@: -@@@@* *@@@@@@@@- \n* =@@@@@ -@@@@@ :@@@@@@@@@@@@@@@@@@@# :@@@@@@@@@@@@@@@% @@@@@ %@@@% #@@@@@@@@@#@@@@. +@@@@- .@@@@@@@@# \n* *@@@@# =@@@@% :#@@@@@@@#: :@@@@@= =@@@@@@@@@@@+. @@@@@ :@@@+ *@@@@@@@- %@@@ *@@@= =@@@@@@@* \n* =++++- -++++= .:::. .=*+: :-=+++=:. ****= .=+. .-++=: :+++ -+=: .-=+=:. \n* \n* \n* HQChart \n* Ver: '+HQCHART_VERSION+' \n* License: Apache License 2.0 \n* Source: https://github.com/jones2000/HQChart\n*\n************************************************************************************************************************************************************************** \n ';console.log(logo);}PrintHQChartVersion();//把给外界调用的方法暴露出来
|
|
13164
13164
|
exports.default=(_jsChartInit$jsChartS={jsChartInit:JSChart.Init,jsChartStyle:JSChart.SetStyle,// IsIndexSymbol:IsIndexSymbol,
|
|
13165
13165
|
// BaseIndex:BaseIndex,
|
|
13166
13166
|
// ChartLine:ChartLine,
|
package/package.json
CHANGED
package/src/jscommon/umychart.js
CHANGED
|
@@ -57146,25 +57146,25 @@ function ChartDrawHLine()
|
|
|
57146
57146
|
}
|
|
57147
57147
|
|
|
57148
57148
|
//画水平线段
|
|
57149
|
+
var line={Start:new Point(), End:new Point()};
|
|
57150
|
+
if (isHScreen)
|
|
57151
|
+
{
|
|
57152
|
+
line.Start.X=drawPoint[0].X;
|
|
57153
|
+
line.Start.Y=left;
|
|
57154
|
+
line.End.X=drawPoint[0].X;
|
|
57155
|
+
line.End.Y=right;
|
|
57156
|
+
}
|
|
57157
|
+
else
|
|
57158
|
+
{
|
|
57159
|
+
line.Start.X=left;
|
|
57160
|
+
line.Start.Y=drawPoint[0].Y;
|
|
57161
|
+
line.End.X=right;
|
|
57162
|
+
line.End.Y=drawPoint[0].Y;
|
|
57163
|
+
}
|
|
57164
|
+
this.LinePoint.push(line);
|
|
57165
|
+
|
|
57149
57166
|
if (bVisibleRange)
|
|
57150
57167
|
{
|
|
57151
|
-
var line={Start:new Point(), End:new Point()};
|
|
57152
|
-
if (isHScreen)
|
|
57153
|
-
{
|
|
57154
|
-
line.Start.X=drawPoint[0].X;
|
|
57155
|
-
line.Start.Y=left;
|
|
57156
|
-
line.End.X=drawPoint[0].X;
|
|
57157
|
-
line.End.Y=right;
|
|
57158
|
-
}
|
|
57159
|
-
else
|
|
57160
|
-
{
|
|
57161
|
-
line.Start.X=left;
|
|
57162
|
-
line.Start.Y=drawPoint[0].Y;
|
|
57163
|
-
line.End.X=right;
|
|
57164
|
-
line.End.Y=drawPoint[0].Y;
|
|
57165
|
-
}
|
|
57166
|
-
this.LinePoint.push(line);
|
|
57167
|
-
|
|
57168
57168
|
var yValue=this.Frame.GetYData(drawPoint[0].Y, false);
|
|
57169
57169
|
var strPrice=yValue.toFixed(this.Precision);
|
|
57170
57170
|
if (this.ShowPriceTextConfig.IsShow[0])
|
|
@@ -57436,6 +57436,7 @@ function ChartDrawHLine()
|
|
|
57436
57436
|
this.Canvas.moveTo(right,ToFixedPoint(y));
|
|
57437
57437
|
this.Canvas.lineTo(right+this.RightSpaceWidth,ToFixedPoint(y));
|
|
57438
57438
|
this.Canvas.stroke();
|
|
57439
|
+
if (!bVisibleRange) this.Canvas.setLineDash([]);
|
|
57439
57440
|
}
|
|
57440
57441
|
|
|
57441
57442
|
this.Canvas.fillStyle=this.LineColor;
|
|
@@ -61055,25 +61055,25 @@ function ChartDrawHLine()
|
|
|
61055
61055
|
}
|
|
61056
61056
|
|
|
61057
61057
|
//画水平线段
|
|
61058
|
+
var line={Start:new Point(), End:new Point()};
|
|
61059
|
+
if (isHScreen)
|
|
61060
|
+
{
|
|
61061
|
+
line.Start.X=drawPoint[0].X;
|
|
61062
|
+
line.Start.Y=left;
|
|
61063
|
+
line.End.X=drawPoint[0].X;
|
|
61064
|
+
line.End.Y=right;
|
|
61065
|
+
}
|
|
61066
|
+
else
|
|
61067
|
+
{
|
|
61068
|
+
line.Start.X=left;
|
|
61069
|
+
line.Start.Y=drawPoint[0].Y;
|
|
61070
|
+
line.End.X=right;
|
|
61071
|
+
line.End.Y=drawPoint[0].Y;
|
|
61072
|
+
}
|
|
61073
|
+
this.LinePoint.push(line);
|
|
61074
|
+
|
|
61058
61075
|
if (bVisibleRange)
|
|
61059
61076
|
{
|
|
61060
|
-
var line={Start:new Point(), End:new Point()};
|
|
61061
|
-
if (isHScreen)
|
|
61062
|
-
{
|
|
61063
|
-
line.Start.X=drawPoint[0].X;
|
|
61064
|
-
line.Start.Y=left;
|
|
61065
|
-
line.End.X=drawPoint[0].X;
|
|
61066
|
-
line.End.Y=right;
|
|
61067
|
-
}
|
|
61068
|
-
else
|
|
61069
|
-
{
|
|
61070
|
-
line.Start.X=left;
|
|
61071
|
-
line.Start.Y=drawPoint[0].Y;
|
|
61072
|
-
line.End.X=right;
|
|
61073
|
-
line.End.Y=drawPoint[0].Y;
|
|
61074
|
-
}
|
|
61075
|
-
this.LinePoint.push(line);
|
|
61076
|
-
|
|
61077
61077
|
var yValue=this.Frame.GetYData(drawPoint[0].Y, false);
|
|
61078
61078
|
var strPrice=yValue.toFixed(this.Precision);
|
|
61079
61079
|
if (this.ShowPriceTextConfig.IsShow[0])
|
|
@@ -61345,6 +61345,7 @@ function ChartDrawHLine()
|
|
|
61345
61345
|
this.Canvas.moveTo(right,ToFixedPoint(y));
|
|
61346
61346
|
this.Canvas.lineTo(right+this.RightSpaceWidth,ToFixedPoint(y));
|
|
61347
61347
|
this.Canvas.stroke();
|
|
61348
|
+
if (!bVisibleRange) this.Canvas.setLineDash([]);
|
|
61348
61349
|
}
|
|
61349
61350
|
|
|
61350
61351
|
this.Canvas.fillStyle=this.LineColor;
|
|
@@ -133728,7 +133729,7 @@ function ScrollBarBGChart()
|
|
|
133728
133729
|
|
|
133729
133730
|
|
|
133730
133731
|
|
|
133731
|
-
var HQCHART_VERSION="1.1.
|
|
133732
|
+
var HQCHART_VERSION="1.1.13402";
|
|
133732
133733
|
|
|
133733
133734
|
function PrintHQChartVersion()
|
|
133734
133735
|
{
|
|
@@ -61099,25 +61099,25 @@ function ChartDrawHLine()
|
|
|
61099
61099
|
}
|
|
61100
61100
|
|
|
61101
61101
|
//画水平线段
|
|
61102
|
+
var line={Start:new Point(), End:new Point()};
|
|
61103
|
+
if (isHScreen)
|
|
61104
|
+
{
|
|
61105
|
+
line.Start.X=drawPoint[0].X;
|
|
61106
|
+
line.Start.Y=left;
|
|
61107
|
+
line.End.X=drawPoint[0].X;
|
|
61108
|
+
line.End.Y=right;
|
|
61109
|
+
}
|
|
61110
|
+
else
|
|
61111
|
+
{
|
|
61112
|
+
line.Start.X=left;
|
|
61113
|
+
line.Start.Y=drawPoint[0].Y;
|
|
61114
|
+
line.End.X=right;
|
|
61115
|
+
line.End.Y=drawPoint[0].Y;
|
|
61116
|
+
}
|
|
61117
|
+
this.LinePoint.push(line);
|
|
61118
|
+
|
|
61102
61119
|
if (bVisibleRange)
|
|
61103
61120
|
{
|
|
61104
|
-
var line={Start:new Point(), End:new Point()};
|
|
61105
|
-
if (isHScreen)
|
|
61106
|
-
{
|
|
61107
|
-
line.Start.X=drawPoint[0].X;
|
|
61108
|
-
line.Start.Y=left;
|
|
61109
|
-
line.End.X=drawPoint[0].X;
|
|
61110
|
-
line.End.Y=right;
|
|
61111
|
-
}
|
|
61112
|
-
else
|
|
61113
|
-
{
|
|
61114
|
-
line.Start.X=left;
|
|
61115
|
-
line.Start.Y=drawPoint[0].Y;
|
|
61116
|
-
line.End.X=right;
|
|
61117
|
-
line.End.Y=drawPoint[0].Y;
|
|
61118
|
-
}
|
|
61119
|
-
this.LinePoint.push(line);
|
|
61120
|
-
|
|
61121
61121
|
var yValue=this.Frame.GetYData(drawPoint[0].Y, false);
|
|
61122
61122
|
var strPrice=yValue.toFixed(this.Precision);
|
|
61123
61123
|
if (this.ShowPriceTextConfig.IsShow[0])
|
|
@@ -61389,6 +61389,7 @@ function ChartDrawHLine()
|
|
|
61389
61389
|
this.Canvas.moveTo(right,ToFixedPoint(y));
|
|
61390
61390
|
this.Canvas.lineTo(right+this.RightSpaceWidth,ToFixedPoint(y));
|
|
61391
61391
|
this.Canvas.stroke();
|
|
61392
|
+
if (!bVisibleRange) this.Canvas.setLineDash([]);
|
|
61392
61393
|
}
|
|
61393
61394
|
|
|
61394
61395
|
this.Canvas.fillStyle=this.LineColor;
|
|
@@ -137669,7 +137670,7 @@ function HQChartScriptWorker()
|
|
|
137669
137670
|
|
|
137670
137671
|
|
|
137671
137672
|
|
|
137672
|
-
var HQCHART_VERSION="1.1.
|
|
137673
|
+
var HQCHART_VERSION="1.1.13402";
|
|
137673
137674
|
|
|
137674
137675
|
function PrintHQChartVersion()
|
|
137675
137676
|
{
|