hqchart 1.1.14001 → 1.1.14003
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
|
@@ -13236,7 +13236,7 @@ this.SortHeader=function(column,sortData){var _this67=this;var sortInfo={Field:t
|
|
|
13236
13236
|
{this.Data.Data=[];for(var i=0;i<this.SourceData.Data.length;++i){this.Data.Data.push(this.SourceData.Data[i]);}}else{var event=this.GetEventCallback(JSCHART_EVENT_ID.ON_TREPORT_LOCAL_SORT);if(event&&event.Callback){var sendData={Column:column,SortInfo:sortInfo,SymbolList:this.Data.Data,Result:null};event.Callback(event,sendData,this);if(Array.isArray(sendData.Result))this.Data.Data=sendData.Result;}else{this.Data.Data.sort(function(left,right){return _this67.LocalSort(left,right,column,sortInfo.Sort,sortInfo.CellType);});}}this.Data.YOffset=0;this.SortInfo.Field=sortInfo.Field;this.SortInfo.Sort=sortInfo.Sort;this.SortInfo.CellType=sortInfo.CellType;this.Draw();this.DelayUpdateStockData();};//本地排序
|
|
13237
13237
|
this.LocalSort=function(left,right,column,sortType,cellType){switch(column.Type){case TREPORT_COLUMN_ID.SYMBOL_ID:case TREPORT_COLUMN_ID.NAME_ID:return this.LocalStringSort(left,right,column,sortType,cellType);case TREPORT_COLUMN_ID.PRICE_ID:case TREPORT_COLUMN_ID.VOL_ID:case TREPORT_COLUMN_ID.UPDOWN_ID:case TREPORT_COLUMN_ID.BUY_PRICE_ID:case TREPORT_COLUMN_ID.SELL_PRICE_ID:case TREPORT_COLUMN_ID.AMOUNT_ID:case TREPORT_COLUMN_ID.BUY_VOL_ID:case TREPORT_COLUMN_ID.SELL_VOL_ID:case TREPORT_COLUMN_ID.YCLOSE_ID:case TREPORT_COLUMN_ID.OPEN_ID:case TREPORT_COLUMN_ID.HIGH_ID:case TREPORT_COLUMN_ID.LOW_ID:case TREPORT_COLUMN_ID.AVERAGE_PRICE_ID:case TREPORT_COLUMN_ID.EXE_PRICE_ID://行权价格
|
|
13238
13238
|
case TREPORT_COLUMN_ID.POSITION_ID://持仓量
|
|
13239
|
-
case TREPORT_COLUMN_ID.AMPLITUDE_ID:case TREPORT_COLUMN_ID.INCREASE_ID:return this.LocalNumberSort(left,right,column,sortType,cellType);default:return 0;}};this.LocalNumberSort=function(left,right,column,sortType,cellType){var leftStock=this.GetExePriceData(left);var rightStock=this.GetExePriceData(right);var leftValue=-99999999999999,rightValue=-99999999999999;if(sortType==2)leftValue=rightValue=99999999999999;var filedName=MAP_TREPORT_COLUMN_FIELD.get(column.Type);if(cellType==0)//行权价格
|
|
13239
|
+
case TREPORT_COLUMN_ID.AMPLITUDE_ID:case TREPORT_COLUMN_ID.INCREASE_ID:case TREPORT_COLUMN_ID.RESERVE_NUMBER1_ID:case TREPORT_COLUMN_ID.RESERVE_NUMBER2_ID:case TREPORT_COLUMN_ID.RESERVE_NUMBER3_ID:case TREPORT_COLUMN_ID.RESERVE_NUMBER4_ID:case TREPORT_COLUMN_ID.RESERVE_NUMBER5_ID:case TREPORT_COLUMN_ID.RESERVE_NUMBER6_ID:case TREPORT_COLUMN_ID.RESERVE_NUMBER7_ID:case TREPORT_COLUMN_ID.RESERVE_NUMBER8_ID:case TREPORT_COLUMN_ID.RESERVE_NUMBER9_ID:case TREPORT_COLUMN_ID.RESERVE_NUMBER10_ID:return this.LocalNumberSort(left,right,column,sortType,cellType);default:return 0;}};this.LocalNumberSort=function(left,right,column,sortType,cellType){var leftStock=this.GetExePriceData(left);var rightStock=this.GetExePriceData(right);var leftValue=-99999999999999,rightValue=-99999999999999;if(sortType==2)leftValue=rightValue=99999999999999;var filedName=MAP_TREPORT_COLUMN_FIELD.get(column.Type);if(cellType==0)//行权价格
|
|
13240
13240
|
{if(leftStock&&IFrameSplitOperator.IsNumber(leftStock.ExePrice))leftValue=leftStock.ExePrice;if(rightStock&&IFrameSplitOperator.IsNumber(rightStock.ExePrice))rightValue=rightStock.ExePrice;}else if(cellType==1){if(leftStock&&leftStock.LeftData){var value=leftStock.LeftData[filedName];if(IFrameSplitOperator.IsNumber(value))leftValue=value;}if(rightStock&&rightStock.LeftData){var value=rightStock.LeftData[filedName];if(IFrameSplitOperator.IsNumber(value))rightValue=value;}}else if(cellType==2){if(leftStock&&leftStock.RightData){var value=leftStock.RightData[filedName];if(IFrameSplitOperator.IsNumber(value))leftValue=value;}if(rightStock&&rightStock.RightData){var value=rightStock.RightData[filedName];if(IFrameSplitOperator.IsNumber(value))rightValue=value;}}if(sortType==1){if(rightValue<leftValue)return-1;else if(rightValue<leftValue)return 1;else return 0;}else{if(leftValue<rightValue)return-1;else if(leftValue>rightValue)return 1;else return 0;}};this.GetTReportChart=function(){var chart=this.ChartPaint[0];return chart;};this.OnWheel=function(e)//滚轴
|
|
13241
13241
|
{JSConsole.Chart.Log('[JSTReportChartContainer::OnWheel]',e);if(this.ChartSplashPaint&&this.ChartSplashPaint.IsEnableSplash==true)return;if(!this.Data||!IFrameSplitOperator.IsNonEmptyArray(this.Data.Data))return;var x=e.clientX-this.UIElement.getBoundingClientRect().left;var y=e.clientY-this.UIElement.getBoundingClientRect().top;var isInClient=false;this.Canvas.beginPath();this.Canvas.rect(this.Frame.ChartBorder.GetLeft(),this.Frame.ChartBorder.GetTop(),this.Frame.ChartBorder.GetWidth(),this.Frame.ChartBorder.GetHeight());isInClient=this.Canvas.isPointInPath(x,y);if(!isInClient)return;var chart=this.GetTReportChart();if(!chart)return;var wheelValue=e.wheelDelta;if(!IFrameSplitOperator.IsObjectExist(e.wheelDelta))wheelValue=e.deltaY*-0.01;if(wheelValue<0)//下
|
|
13242
13242
|
{var result=this.MoveSelectedRow(1,{EnablePageCycle:this.EnablePageCycle});if(result){if(result.Redraw)this.Draw();if(result.Update)this.DelayUpdateStockData();}}else if(wheelValue>0)//上
|
|
@@ -13886,7 +13886,7 @@ hisData.Symbol=message.symbol;}var stockObj={HQDataType:HQ_DATA_TYPE.KLINE_ID,St
|
|
|
13886
13886
|
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);};}/********************************************************************************
|
|
13887
13887
|
* 版本信息输出
|
|
13888
13888
|
*
|
|
13889
|
-
*/var HQCHART_VERSION="1.1.
|
|
13889
|
+
*/var HQCHART_VERSION="1.1.14002";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();//把给外界调用的方法暴露出来
|
|
13890
13890
|
exports.default=(_jsChartInit$jsChartS={jsChartInit:JSChart.Init,jsChartStyle:JSChart.SetStyle,// IsIndexSymbol:IsIndexSymbol,
|
|
13891
13891
|
// BaseIndex:BaseIndex,
|
|
13892
13892
|
// ChartLine:ChartLine,
|
package/package.json
CHANGED
|
@@ -1043,6 +1043,17 @@ function JSTReportChartContainer(uielement)
|
|
|
1043
1043
|
case TREPORT_COLUMN_ID.POSITION_ID: //持仓量
|
|
1044
1044
|
case TREPORT_COLUMN_ID.AMPLITUDE_ID:
|
|
1045
1045
|
case TREPORT_COLUMN_ID.INCREASE_ID:
|
|
1046
|
+
|
|
1047
|
+
case TREPORT_COLUMN_ID.RESERVE_NUMBER1_ID:
|
|
1048
|
+
case TREPORT_COLUMN_ID.RESERVE_NUMBER2_ID:
|
|
1049
|
+
case TREPORT_COLUMN_ID.RESERVE_NUMBER3_ID:
|
|
1050
|
+
case TREPORT_COLUMN_ID.RESERVE_NUMBER4_ID:
|
|
1051
|
+
case TREPORT_COLUMN_ID.RESERVE_NUMBER5_ID:
|
|
1052
|
+
case TREPORT_COLUMN_ID.RESERVE_NUMBER6_ID:
|
|
1053
|
+
case TREPORT_COLUMN_ID.RESERVE_NUMBER7_ID:
|
|
1054
|
+
case TREPORT_COLUMN_ID.RESERVE_NUMBER8_ID:
|
|
1055
|
+
case TREPORT_COLUMN_ID.RESERVE_NUMBER9_ID:
|
|
1056
|
+
case TREPORT_COLUMN_ID.RESERVE_NUMBER10_ID:
|
|
1046
1057
|
return this.LocalNumberSort(left, right, column, sortType, cellType);
|
|
1047
1058
|
|
|
1048
1059
|
default:
|
|
@@ -2198,7 +2209,7 @@ function ChartTReport()
|
|
|
2198
2209
|
this.FormatReserveNumber=function(column, data, drawInfo)
|
|
2199
2210
|
{
|
|
2200
2211
|
if (column.DefaultText) drawInfo.Text=column.DefaultText;
|
|
2201
|
-
|
|
2212
|
+
|
|
2202
2213
|
var fieldName=MAP_TREPORT_COLUMN_FIELD.get(column.Type);
|
|
2203
2214
|
if (!fieldName) return;
|
|
2204
2215
|
|
|
@@ -138812,7 +138812,7 @@ function ScrollBarBGChart()
|
|
|
138812
138812
|
|
|
138813
138813
|
|
|
138814
138814
|
|
|
138815
|
-
var HQCHART_VERSION="1.1.
|
|
138815
|
+
var HQCHART_VERSION="1.1.14002";
|
|
138816
138816
|
|
|
138817
138817
|
function PrintHQChartVersion()
|
|
138818
138818
|
{
|
|
@@ -136560,6 +136560,17 @@ function JSTReportChartContainer(uielement)
|
|
|
136560
136560
|
case TREPORT_COLUMN_ID.POSITION_ID: //持仓量
|
|
136561
136561
|
case TREPORT_COLUMN_ID.AMPLITUDE_ID:
|
|
136562
136562
|
case TREPORT_COLUMN_ID.INCREASE_ID:
|
|
136563
|
+
|
|
136564
|
+
case TREPORT_COLUMN_ID.RESERVE_NUMBER1_ID:
|
|
136565
|
+
case TREPORT_COLUMN_ID.RESERVE_NUMBER2_ID:
|
|
136566
|
+
case TREPORT_COLUMN_ID.RESERVE_NUMBER3_ID:
|
|
136567
|
+
case TREPORT_COLUMN_ID.RESERVE_NUMBER4_ID:
|
|
136568
|
+
case TREPORT_COLUMN_ID.RESERVE_NUMBER5_ID:
|
|
136569
|
+
case TREPORT_COLUMN_ID.RESERVE_NUMBER6_ID:
|
|
136570
|
+
case TREPORT_COLUMN_ID.RESERVE_NUMBER7_ID:
|
|
136571
|
+
case TREPORT_COLUMN_ID.RESERVE_NUMBER8_ID:
|
|
136572
|
+
case TREPORT_COLUMN_ID.RESERVE_NUMBER9_ID:
|
|
136573
|
+
case TREPORT_COLUMN_ID.RESERVE_NUMBER10_ID:
|
|
136563
136574
|
return this.LocalNumberSort(left, right, column, sortType, cellType);
|
|
136564
136575
|
|
|
136565
136576
|
default:
|
|
@@ -137715,7 +137726,7 @@ function ChartTReport()
|
|
|
137715
137726
|
this.FormatReserveNumber=function(column, data, drawInfo)
|
|
137716
137727
|
{
|
|
137717
137728
|
if (column.DefaultText) drawInfo.Text=column.DefaultText;
|
|
137718
|
-
|
|
137729
|
+
|
|
137719
137730
|
var fieldName=MAP_TREPORT_COLUMN_FIELD.get(column.Type);
|
|
137720
137731
|
if (!fieldName) return;
|
|
137721
137732
|
|
|
@@ -145232,7 +145243,7 @@ function HQChartScriptWorker()
|
|
|
145232
145243
|
|
|
145233
145244
|
|
|
145234
145245
|
|
|
145235
|
-
var HQCHART_VERSION="1.1.
|
|
145246
|
+
var HQCHART_VERSION="1.1.14002";
|
|
145236
145247
|
|
|
145237
145248
|
function PrintHQChartVersion()
|
|
145238
145249
|
{
|