hqchart 1.1.14804 → 1.1.14811

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.
@@ -6924,6 +6924,8 @@ var JSCHART_EVENT_ID=
6924
6924
  ON_CLICK_CROSSCURSOR_BOTTOM:170, //十字光标底部文字点击
6925
6925
 
6926
6926
  ON_CLICK_CHART_CELL:171, //点击图形单元
6927
+
6928
+ GET_DEFAULT_INDEX_PARAM:172, //获取指标默认参数
6927
6929
  }
6928
6930
 
6929
6931
  var JSCHART_OPERATOR_ID=
@@ -57325,6 +57327,24 @@ IFrameSplitOperator.FormatDateTimeString=function(value,isShowDate,isShowTime)
57325
57327
  return result;
57326
57328
  }
57327
57329
 
57330
+ IFrameSplitOperator.FormatDateTimeStringV2=function(datetime, format, languageID)
57331
+ {
57332
+ if (!datetime) return null;
57333
+
57334
+ switch(format)
57335
+ {
57336
+ case "YYYY-MM-DD":
57337
+ return `${datetime.getFullYear()}-${IFrameSplitOperator.NumberToString(datetime.getMonth()+1)}-${IFrameSplitOperator.NumberToString(datetime.getDate())}`;
57338
+
57339
+ case "HH:MM:SS":
57340
+ return `${IFrameSplitOperator.NumberToString(datetime.getHours())}:${IFrameSplitOperator.NumberToString(datetime.getMinutes())}:${IFrameSplitOperator.NumberToString(datetime.getSeconds())}`;
57341
+ case "HH:MM":
57342
+ return `${IFrameSplitOperator.NumberToString(datetime.getHours())}:${IFrameSplitOperator.NumberToString(datetime.getMinutes())}`;
57343
+ default:
57344
+ return null;
57345
+ }
57346
+ }
57347
+
57328
57348
  //字段颜色格式化
57329
57349
  IFrameSplitOperator.FormatValueColor = function (value, value2)
57330
57350
  {
@@ -102790,6 +102810,11 @@ var MARKET_SUFFIX_NAME=
102790
102810
  return 2;
102791
102811
  },
102792
102812
 
102813
+ GetSHSZCustomIndexDecimal:function(symbol)
102814
+ {
102815
+ return 3;
102816
+ },
102817
+
102793
102818
  GetFHKDecimal:function(symbol) //港股指数期货 小数位数
102794
102819
  {
102795
102820
  return 0;
@@ -103015,6 +103040,12 @@ function MinuteTimeStringData()
103015
103040
  return this.BJ;
103016
103041
  }
103017
103042
 
103043
+ this.GetSHSZCustomIndex=function(upperSymbol)
103044
+ {
103045
+ if (!this.SHSZ) this.SHSZ=this.CreateSHSZData();
103046
+ return this.SHSZ;
103047
+ }
103048
+
103018
103049
  this.GetSHO=function(upperSymbol)
103019
103050
  {
103020
103051
  if (!this.SHO) this.SHO=this.CreateSHOData();
@@ -103304,6 +103335,7 @@ function MinuteTimeStringData()
103304
103335
  if (MARKET_SUFFIX_NAME.IsSHO(upperSymbol)) return this.GetSHO();
103305
103336
  if (MARKET_SUFFIX_NAME.IsSZO(upperSymbol)) return this.GetSZO();
103306
103337
  if (MARKET_SUFFIX_NAME.IsSH(upperSymbol) || MARKET_SUFFIX_NAME.IsSZ(upperSymbol)) return this.GetSHSZ(upperSymbol);
103338
+ if (MARKET_SUFFIX_NAME.IsSHSZCustomIndex(upperSymbol)) return this.GetSHSZCustomIndex(upperSymbol);
103307
103339
  if (MARKET_SUFFIX_NAME.IsBJ(upperSymbol)) return this.GetBJ(upperSymbol);
103308
103340
  if (MARKET_SUFFIX_NAME.IsHK(upperSymbol)) return this.GetHK(upperSymbol);
103309
103341
  if (MARKET_SUFFIX_NAME.IsTW(upperSymbol)) return this.GetTW(upperSymbol);
@@ -106182,6 +106214,7 @@ function GetfloatPrecision(symbol) //获取小数位数
106182
106214
 
106183
106215
  else if (MARKET_SUFFIX_NAME.IsSZ(upperSymbol)) defaultfloatPrecision=MARKET_SUFFIX_NAME.GetSZDecimal(upperSymbol);
106184
106216
  else if (MARKET_SUFFIX_NAME.IsSH(upperSymbol)) defaultfloatPrecision=MARKET_SUFFIX_NAME.GetSHDecimal(upperSymbol);
106217
+ else if (MARKET_SUFFIX_NAME.IsSHSZCustomIndex(upperSymbol)) defaultfloatPrecision=MARKET_SUFFIX_NAME.GetSHSZCustomIndexDecimal(upperSymbol);
106185
106218
 
106186
106219
  else defaultfloatPrecision=MARKET_SUFFIX_NAME.GetDefaultDecimal(upperSymbol);
106187
106220
 
@@ -137787,7 +137820,7 @@ function JSReportChartContainer(uielement)
137787
137820
  //32=收盘价线 33=K线 35=时间 36=日期字段 38=持仓量 39=结算价 40=昨结算价 41=开仓量 42=平仓量
137788
137821
  //43=1m涨速% 44=3m涨速% 45=5m涨速% 46=10m涨速% 47=15m涨速%
137789
137822
  //80=整行背景色
137790
- //101-199=数值型 201-299=字符型 301-350=进度条 351-400=按钮
137823
+ //101-199=数值型 201-299=字符型 301-350=进度条 351-400=按钮 401-499=日期时间
137791
137824
 
137792
137825
  if (IFrameSplitOperator.IsString(item[1])) stock.Name=item[1];
137793
137826
  if (IFrameSplitOperator.IsNumber(item[2])) stock.YClose=item[2];
@@ -137933,7 +137966,18 @@ function JSReportChartContainer(uielement)
137933
137966
  if (IFrameSplitOperator.IsObject(item[358])) stock.ReserveButton8=item[358];
137934
137967
  if (IFrameSplitOperator.IsObject(item[359])) stock.ReserveButton9=item[359];
137935
137968
  if (IFrameSplitOperator.IsObject(item[360])) stock.ReserveButton10=item[360];
137936
-
137969
+
137970
+ //10个日期时间类型 401-499 { Value:Date, BGColor }
137971
+ if (IFrameSplitOperator.IsObject(item[401])) stock.ReserveDateTime1=item[401];
137972
+ if (IFrameSplitOperator.IsObject(item[402])) stock.ReserveDateTime2=item[402];
137973
+ if (IFrameSplitOperator.IsObject(item[403])) stock.ReserveDateTime3=item[403];
137974
+ if (IFrameSplitOperator.IsObject(item[404])) stock.ReserveDateTime4=item[404];
137975
+ if (IFrameSplitOperator.IsObject(item[405])) stock.ReserveDateTime5=item[405];
137976
+ if (IFrameSplitOperator.IsObject(item[406])) stock.ReserveDateTime6=item[406];
137977
+ if (IFrameSplitOperator.IsObject(item[407])) stock.ReserveDateTime7=item[407];
137978
+ if (IFrameSplitOperator.IsObject(item[408])) stock.ReserveDateTime8=item[408];
137979
+ if (IFrameSplitOperator.IsObject(item[409])) stock.ReserveDateTime9=item[409];
137980
+ if (IFrameSplitOperator.IsObject(item[410])) stock.ReserveDateTime10=item[410];
137937
137981
  }
137938
137982
 
137939
137983
 
@@ -140780,6 +140824,18 @@ var REPORT_COLUMN_ID=
140780
140824
  RESERVE_BUTTON9_ID:459, //ReserveButton9:
140781
140825
  RESERVE_BUTTON10_ID:460, //ReserveButton10:
140782
140826
 
140827
+
140828
+ //预留日期时间类型 10个 501-599
140829
+ RESERVE_DATETIME1_ID:501, //ReserveDateTime1;
140830
+ RESERVE_DATETIME2_ID:502,
140831
+ RESERVE_DATETIME3_ID:503,
140832
+ RESERVE_DATETIME4_ID:504,
140833
+ RESERVE_DATETIME5_ID:505,
140834
+ RESERVE_DATETIME6_ID:506,
140835
+ RESERVE_DATETIME7_ID:507,
140836
+ RESERVE_DATETIME8_ID:508,
140837
+ RESERVE_DATETIME9_ID:509,
140838
+ RESERVE_DATETIME10_ID:510,
140783
140839
  }
140784
140840
 
140785
140841
 
@@ -140876,6 +140932,17 @@ var MAP_COLUMN_FIELD=new Map([
140876
140932
  [REPORT_COLUMN_ID.RESERVE_BUTTON8_ID,"ReserveButton8"],
140877
140933
  [REPORT_COLUMN_ID.RESERVE_BUTTON9_ID,"ReserveButton9"],
140878
140934
  [REPORT_COLUMN_ID.RESERVE_BUTTON10_ID,"ReserveButton10"],
140935
+
140936
+ [REPORT_COLUMN_ID.RESERVE_DATETIME1_ID,"ReserveDateTime1"],
140937
+ [REPORT_COLUMN_ID.RESERVE_DATETIME2_ID,"ReserveDateTime2"],
140938
+ [REPORT_COLUMN_ID.RESERVE_DATETIME3_ID,"ReserveDateTime3"],
140939
+ [REPORT_COLUMN_ID.RESERVE_DATETIME4_ID,"ReserveDateTime4"],
140940
+ [REPORT_COLUMN_ID.RESERVE_DATETIME5_ID,"ReserveDateTime5"],
140941
+ [REPORT_COLUMN_ID.RESERVE_DATETIME6_ID,"ReserveDateTime6"],
140942
+ [REPORT_COLUMN_ID.RESERVE_DATETIME7_ID,"ReserveDateTime7"],
140943
+ [REPORT_COLUMN_ID.RESERVE_DATETIME8_ID,"ReserveDateTime8"],
140944
+ [REPORT_COLUMN_ID.RESERVE_DATETIME9_ID,"ReserveDateTime9"],
140945
+ [REPORT_COLUMN_ID.RESERVE_DATETIME10_ID,"ReserveDateTime10"],
140879
140946
  ]);
140880
140947
 
140881
140948
  function ChartReport()
@@ -141273,6 +141340,10 @@ function ChartReport()
141273
141340
  if (item.Format) colItem.Format=item.Format; //数据格式化设置{ Type:1=原始 2=千分位分割 3=万亿转换, ExFloatPrecision:万亿转换以后的小数位数 }
141274
141341
  if (item.StringFormat) colItem.StringFormat=item.StringFormat; //"{0}%" 输出增加固定字符
141275
141342
  }
141343
+ else if (this.IsReserveDateTime(item.Type))
141344
+ {
141345
+ if (item.DateTimeFormat) colItem.DateTimeFormat=item.DateTimeFormat; //日期格式化
141346
+ }
141276
141347
  else if (item.Type==REPORT_COLUMN_ID.CUSTOM_PROGRESS_ID)
141277
141348
  {
141278
141349
  if (!IFrameSplitOperator.IsNumber(item.DataIndex) && !IFrameSplitOperator.IsNumber(item.BlockIndex)) return null;
@@ -141516,6 +141587,18 @@ function ChartReport()
141516
141587
  { Type:REPORT_COLUMN_ID.RESERVE_BUTTON8_ID, Title:"按钮8", TextAlign:"center", FixedWidth:50*GetDevicePixelRatio() },
141517
141588
  { Type:REPORT_COLUMN_ID.RESERVE_BUTTON9_ID, Title:"按钮9", TextAlign:"center", FixedWidth:50*GetDevicePixelRatio() },
141518
141589
  { Type:REPORT_COLUMN_ID.RESERVE_BUTTON10_ID, Title:"按钮10", TextAlign:"center", FixedWidth:50*GetDevicePixelRatio() },
141590
+
141591
+
141592
+ { Type:REPORT_COLUMN_ID.RESERVE_DATETIME1_ID, Title:"日期1", TextAlign:"right", TextColor:g_JSChartResource.Report.FieldColor.Text, MaxText:"9999-99-99", DateTimeFormat:"YYYY-MM-DD" },
141593
+ { Type:REPORT_COLUMN_ID.RESERVE_DATETIME2_ID, Title:"日期2", TextAlign:"right", TextColor:g_JSChartResource.Report.FieldColor.Text, MaxText:"9999-99-99", DateTimeFormat:"YYYY-MM-DD" },
141594
+ { Type:REPORT_COLUMN_ID.RESERVE_DATETIME3_ID, Title:"日期3", TextAlign:"right", TextColor:g_JSChartResource.Report.FieldColor.Text, MaxText:"9999-99-99", DateTimeFormat:"YYYY-MM-DD" },
141595
+ { Type:REPORT_COLUMN_ID.RESERVE_DATETIME4_ID, Title:"日期4", TextAlign:"right", TextColor:g_JSChartResource.Report.FieldColor.Text, MaxText:"9999-99-99", DateTimeFormat:"YYYY-MM-DD" },
141596
+ { Type:REPORT_COLUMN_ID.RESERVE_DATETIME5_ID, Title:"日期5", TextAlign:"right", TextColor:g_JSChartResource.Report.FieldColor.Text, MaxText:"9999-99-99", DateTimeFormat:"YYYY-MM-DD" },
141597
+ { Type:REPORT_COLUMN_ID.RESERVE_DATETIME6_ID, Title:"日期6", TextAlign:"right", TextColor:g_JSChartResource.Report.FieldColor.Text, MaxText:"9999-99-99", DateTimeFormat:"YYYY-MM-DD" },
141598
+ { Type:REPORT_COLUMN_ID.RESERVE_DATETIME7_ID, Title:"日期7", TextAlign:"right", TextColor:g_JSChartResource.Report.FieldColor.Text, MaxText:"9999-99-99", DateTimeFormat:"YYYY-MM-DD" },
141599
+ { Type:REPORT_COLUMN_ID.RESERVE_DATETIME8_ID, Title:"日期8", TextAlign:"right", TextColor:g_JSChartResource.Report.FieldColor.Text, MaxText:"9999-99-99", DateTimeFormat:"YYYY-MM-DD" },
141600
+ { Type:REPORT_COLUMN_ID.RESERVE_DATETIME9_ID, Title:"日期9", TextAlign:"right", TextColor:g_JSChartResource.Report.FieldColor.Text, MaxText:"9999-99-99", DateTimeFormat:"YYYY-MM-DD" },
141601
+ { Type:REPORT_COLUMN_ID.RESERVE_DATETIME10_ID, Title:"日期10", TextAlign:"right", TextColor:g_JSChartResource.Report.FieldColor.Text, MaxText:"9999-99-99", DateTimeFormat:"YYYY-MM-DD" },
141519
141602
 
141520
141603
  ];
141521
141604
 
@@ -142810,6 +142893,11 @@ function ChartReport()
142810
142893
  this.FormatReserveString(column, stock, drawInfo);
142811
142894
  this.FormatDrawInfoEvent(stock, data, column, drawInfo);
142812
142895
  }
142896
+ else if (this.IsReserveDateTime(column.Type))
142897
+ {
142898
+ this.FormatReserveDateTime(column, stock, drawInfo);
142899
+ this.FormatDrawInfoEvent(stock, data, column, drawInfo);
142900
+ }
142813
142901
  else if (this.IsReserveProgressBarColumn(column.Type))
142814
142902
  {
142815
142903
  this.FormatReserveProgressBar(column, stock, drawInfo);
@@ -142979,6 +143067,18 @@ function ChartReport()
142979
143067
  return ARARY_TYPE.includes(value);
142980
143068
  }
142981
143069
 
143070
+ this.IsReserveDateTime=function(value)
143071
+ {
143072
+ var ARARY_TYPE=
143073
+ [
143074
+ REPORT_COLUMN_ID.RESERVE_DATETIME1_ID,REPORT_COLUMN_ID.RESERVE_DATETIME2_ID,REPORT_COLUMN_ID.RESERVE_DATETIME3_ID,REPORT_COLUMN_ID.RESERVE_DATETIME4_ID,
143075
+ REPORT_COLUMN_ID.RESERVE_DATETIME5_ID,REPORT_COLUMN_ID.RESERVE_DATETIME6_ID,REPORT_COLUMN_ID.RESERVE_DATETIME7_ID,REPORT_COLUMN_ID.RESERVE_DATETIME8_ID,
143076
+ REPORT_COLUMN_ID.RESERVE_DATETIME9_ID,REPORT_COLUMN_ID.RESERVE_DATETIME10_ID
143077
+ ];
143078
+
143079
+ return ARARY_TYPE.includes(value);
143080
+ }
143081
+
142982
143082
 
142983
143083
 
142984
143084
  this.DrawCustomText=function(drawInfo, column, left, top, cellWidth)
@@ -143411,6 +143511,21 @@ function ChartReport()
143411
143511
  }
143412
143512
  }
143413
143513
 
143514
+ this.FormatReserveDateTime=function(column, data, drawInfo)
143515
+ {
143516
+ if (column.DefaultText) drawInfo.Text=column.DefaultText;
143517
+
143518
+ var fieldName=MAP_COLUMN_FIELD.get(column.Type);
143519
+ if (!data || !fieldName) return;
143520
+
143521
+ var item=data[fieldName];
143522
+ if (!IFrameSplitOperator.IsObject(item)) return;
143523
+
143524
+ if (item.DateTime) drawInfo.Text=IFrameSplitOperator.FormatDateTimeStringV2(item.DateTime,column.DateTimeFormat);
143525
+ if (item.TextColor) drawInfo.TextColor=item.TextColor;
143526
+ if (item.BGColor) drawInfo.BGColor=item.BGColor;
143527
+ }
143528
+
143414
143529
  this.FormatReserveProgressBar=function(column, data, drawInfo)
143415
143530
  {
143416
143531
  var fieldName=MAP_COLUMN_FIELD.get(column.Type);
@@ -159674,7 +159789,8 @@ function JSDialogModifyIndexParam()
159674
159789
 
159675
159790
  this.AryData=[];
159676
159791
  this.IndexData=null; //指标数据 { WindowsIndex:, Type:1=主图 2=叠加, Identify, IndexScript: }
159677
- this.Arguments=[]; //参数备份
159792
+ this.Arguments=[]; //默认参数
159793
+ this.EnableRestoreParam=true; //是否允许“恢复默认"
159678
159794
 
159679
159795
  this.RestoreFocusDelay=800;
159680
159796
 
@@ -159685,6 +159801,7 @@ function JSDialogModifyIndexParam()
159685
159801
  {
159686
159802
  if (IFrameSplitOperator.IsNumber(option.Style)) this.Style=option.Style;
159687
159803
  if (IFrameSplitOperator.IsNumber(option.MaxRowCount)) this.MaxRowCount=option.MaxRowCount;
159804
+ if (IFrameSplitOperator.IsBool(option.EnableRestoreParam)) this.EnableRestoreParam=option.EnableRestoreParam;
159688
159805
  }
159689
159806
  }
159690
159807
 
@@ -159725,7 +159842,7 @@ function JSDialogModifyIndexParam()
159725
159842
 
159726
159843
  this.OnClickColseButton=function(e)
159727
159844
  {
159728
- this.RestoreParam(); //还原参数
159845
+ //this.RestoreParam(); //还原参数
159729
159846
  this.Close(e);
159730
159847
  }
159731
159848
 
@@ -159756,7 +159873,8 @@ function JSDialogModifyIndexParam()
159756
159873
  this.SetIndexData=function(data)
159757
159874
  {
159758
159875
  this.IndexData=data;
159759
- this.BackupParam();
159876
+ this.GetDefaultParam();
159877
+ //this.BackupParam();
159760
159878
  }
159761
159879
 
159762
159880
  this.OnMouseDownTitle=function(e)
@@ -159834,31 +159952,6 @@ function JSDialogModifyIndexParam()
159834
159952
  table.className="UMyChart_ModifyIndexParam_Table";
159835
159953
  divTable.appendChild(table);
159836
159954
 
159837
- /*
159838
- var thead=document.createElement("thead");
159839
- table.appendChild(thead);
159840
-
159841
- var trDom=document.createElement("tr");
159842
- trDom.className='UMyChart_ModifyIndexParam_head_Tr';
159843
- thead.appendChild(trDom);
159844
-
159845
- var thDom=document.createElement("th");
159846
- thDom.className="UMyChart_ModifyIndexParam_Th";
159847
- thDom.innerText="变量";
159848
- trDom.appendChild(thDom);
159849
-
159850
- var thDom=document.createElement("th");
159851
- thDom.className="UMyChart_ModifyIndexParam_Th";
159852
- thDom.innerText="数值";
159853
- trDom.appendChild(thDom);
159854
-
159855
- var thDom=document.createElement("th");
159856
- thDom.className="UMyChart_ModifyIndexParam_Th";
159857
- thDom.innerText="说明";
159858
- trDom.appendChild(thDom);
159859
- */
159860
-
159861
-
159862
159955
  var tbody=document.createElement("tbody");
159863
159956
  tbody.className="UMyChart_ModifyIndexParam_Tbody";
159864
159957
  table.appendChild(tbody);
@@ -159875,17 +159968,29 @@ function JSDialogModifyIndexParam()
159875
159968
  divButton.className='UMyChart_ModifyIndexParam_Button_Div';
159876
159969
  divFrame.appendChild(divButton);
159877
159970
 
159878
- var btnRestore=document.createElement("button");
159879
- //btnRestore.className="UMyChart_ModifyIndexParam_button";
159880
- btnRestore.innerText="恢复默认";
159881
- btnRestore.addEventListener("mousedown", (e)=>{ this.OnClickRestoreButton(e); });
159882
- divButton.appendChild(btnRestore);
159971
+ if (this.EnableRestoreParam)
159972
+ {
159973
+ var btnRestore=document.createElement("button");
159974
+ //btnRestore.className="UMyChart_ModifyIndexParam_button";
159975
+ btnRestore.innerText="恢复默认";
159976
+ btnRestore.addEventListener("mousedown", (e)=>{ this.OnClickRestoreButton(e); });
159977
+ divButton.appendChild(btnRestore);
159978
+ }
159979
+
159883
159980
 
159981
+ /*
159884
159982
  var btnOk=document.createElement("button");
159885
159983
  //btnOk.className="UMyChart_ModifyIndexParam_button";
159886
159984
  btnOk.innerText="确认";
159887
159985
  btnOk.addEventListener("mousedown", (e)=>{ this.OnClickOkButton(e); })
159888
159986
  divButton.appendChild(btnOk);
159987
+ */
159988
+
159989
+ var btnOk=document.createElement("button");
159990
+ //btnOk.className="UMyChart_ModifyIndexParam_button";
159991
+ btnOk.innerText="关闭";
159992
+ btnOk.addEventListener("mousedown", (e)=>{ this.Close(e); })
159993
+ divButton.appendChild(btnOk);
159889
159994
 
159890
159995
  document.body.appendChild(divDom);
159891
159996
 
@@ -160027,6 +160132,41 @@ function JSDialogModifyIndexParam()
160027
160132
  }
160028
160133
  }
160029
160134
 
160135
+ this.GetDefaultParam=function()
160136
+ {
160137
+ this.Arguments=[];
160138
+ if (!this.IndexData || !this.IndexData.IndexScript) return;
160139
+ var indexScript=this.IndexData.IndexScript;
160140
+
160141
+ var args=[];
160142
+ if (indexScript.ID)
160143
+ {
160144
+ var scriptData = new JSIndexScript();
160145
+ var indexInfo = scriptData.Get(indexScript.ID);
160146
+ if (indexInfo) args=indexInfo.Args;
160147
+ }
160148
+
160149
+ var event=this.HQChart.GetEventCallback(JSCHART_EVENT_ID.GET_DEFAULT_INDEX_PARAM);
160150
+ if (event && event.Callback)
160151
+ {
160152
+ var sendData={ IndexData:this.IndexData, Args:args.slice(), PreventDefault:false };
160153
+ event.Callback(event, sendData, this);
160154
+
160155
+ if (sendData.PreventDefault) return;
160156
+
160157
+ args=sendData.Args;
160158
+ }
160159
+
160160
+ if (IFrameSplitOperator.IsNonEmptyArray(args))
160161
+ {
160162
+ for(var i=0;i<args.length;++i)
160163
+ {
160164
+ var item=args[i];
160165
+ this.Arguments.push({Name:item.Name, Value:item.Value, Index:i});
160166
+ }
160167
+ }
160168
+ }
160169
+
160030
160170
  this.OnParamMouseUp=function(e)
160031
160171
  {
160032
160172
  var input=e.target;
@@ -160193,7 +160333,7 @@ function HQChartScriptWorker()
160193
160333
 
160194
160334
 
160195
160335
 
160196
- var HQCHART_VERSION="1.1.14803";
160336
+ var HQCHART_VERSION="1.1.14810";
160197
160337
 
160198
160338
  function PrintHQChartVersion()
160199
160339
  {