hqchart 1.1.14855 → 1.1.14862

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.
@@ -56264,6 +56264,10 @@ HQData.RequestRealtimeData=function(data, callback)
56264
56264
 
56265
56265
  var hqchartData={ code:0, stock:aryStock };
56266
56266
 
56267
+ var time=new Date();
56268
+ //if (time.getSeconds()%3==1)
56269
+ hqchartData.LatestPointFlash={ FlashCount:2 };
56270
+
56267
56271
 
56268
56272
  callback(hqchartData);
56269
56273
 
@@ -57811,6 +57815,8 @@ HQData.Report_APIIndex=function(data, callback)
57811
57815
  HQData.APIIndex_DRAWSVG(data, callback);
57812
57816
  else if (request.Data.indexname=="API_BASELINE_BAR")
57813
57817
  HQData.APIIndex_BASELINE_BAR(data, callback);
57818
+ else if (request.Data.indexname=="API_VERTLINE")
57819
+ HQData.APIIndex_VERTLINE(data, callback);
57814
57820
  }
57815
57821
 
57816
57822
 
@@ -59181,7 +59187,7 @@ HQData.APIIndex_BASELINE_BAR=function(data, callback)
59181
59187
  {
59182
59188
  var kItem=kData.Data[i];
59183
59189
 
59184
- var item={ Date:kItem.Date, Time:kItem.Time, Up:kItem.Vol*0.2, Down:(kItem.Vol*0.35)*-1 };
59190
+ var item={ Date:kItem.Date, Time:kItem.Time, Up:kItem.Vol*0.2, Down:(kItem.Vol*0.35) };
59185
59191
  pointData.Draw.DrawData.push(item);
59186
59192
  }
59187
59193
 
@@ -59197,6 +59203,44 @@ HQData.APIIndex_BASELINE_BAR=function(data, callback)
59197
59203
  }
59198
59204
 
59199
59205
 
59206
+ HQData.APIIndex_VERTLINE=function(data, callback)
59207
+ {
59208
+ data.PreventDefault=true;
59209
+ var hqchart=data.HQChart;
59210
+ var kData=hqchart.GetKData();
59211
+
59212
+ var lineData=
59213
+ {
59214
+ name:"VERTLINE", type:1,
59215
+ Draw:
59216
+ {
59217
+ Name:"VERTLINE",
59218
+ DrawType:"VERTLINE",
59219
+ DrawData:{ Data:[] },
59220
+ },
59221
+ };
59222
+
59223
+ for(var i=0;i<kData.Data.length;++i)
59224
+ {
59225
+ var kItem=kData.Data[i];
59226
+
59227
+ var value=0;
59228
+ if (i%5==1) value=1;
59229
+ lineData.Draw.DrawData.Data[i]=value;
59230
+ }
59231
+
59232
+ var apiData=
59233
+ {
59234
+ code:0,
59235
+ stock:{ name:hqchart.Name, symbol:hqchart.Symbol },
59236
+ outdata: { date:kData.GetDate(), time:kData.GetTime(), outvar:[ lineData] },
59237
+ };
59238
+
59239
+ console.log('[HQData.APIIndex_VERTLINE] apiData ', apiData);
59240
+ callback(apiData);
59241
+ }
59242
+
59243
+
59200
59244
 
59201
59245
 
59202
59246
  /*暴露外部用的方法*/
@@ -6955,6 +6955,8 @@ var JSCHART_EVENT_ID=
6955
6955
  ON_CLICK_CHART_CELL:171, //点击图形单元
6956
6956
 
6957
6957
  GET_DEFAULT_INDEX_PARAM:172, //获取指标默认参数
6958
+
6959
+ ON_RELOAD_RESOURCE:173,
6958
6960
  }
6959
6961
 
6960
6962
  var JSCHART_OPERATOR_ID=
@@ -13647,6 +13649,13 @@ function JSChartContainer(uielement, OffscreenElement, cacheElement)
13647
13649
  this.ReloadChartCorssCursor(option,option.Resource);
13648
13650
  this.ReloadChartDrawPictureResource(option.Resource);
13649
13651
 
13652
+ var event=this.GetEventCallback(JSCHART_EVENT_ID.ON_RELOAD_RESOURCE); //配色重新加载
13653
+ if (event && event.Callback)
13654
+ {
13655
+ var sendData={ Option:option };
13656
+ event.Callback(event, sendData, this);
13657
+ }
13658
+
13650
13659
  if (option.Update && this.Update) this.Update( {UpdateCursorIndexType:2} ); //是否立即更新并重绘
13651
13660
  else if (option.Draw==true || option.Redraw==true) this.Draw(); //是否立即重绘
13652
13661
 
@@ -79271,6 +79280,21 @@ function JSChartResource()
79271
79280
  {
79272
79281
  LineColor:"rgba(255,165,0,0.6)",
79273
79282
  LineWidth:2,
79283
+ },
79284
+
79285
+ Title:
79286
+ {
79287
+ Font:`${12*GetDevicePixelRatio()}px 微软雅黑`,
79288
+ },
79289
+
79290
+ CorssCursor:
79291
+ {
79292
+ Font:`${12*GetDevicePixelRatio()}px 微软雅黑`
79293
+ },
79294
+
79295
+ Frame:
79296
+ {
79297
+ Font:`${12*GetDevicePixelRatio()}px 微软雅黑`, //刻度坐标
79274
79298
  }
79275
79299
  }
79276
79300
 
@@ -80953,6 +80977,18 @@ function JSChartResource()
80953
80977
  if (item.Mark.LineColor) dest.Mark.LineColor=item.Mark.LineColor;
80954
80978
  if (IFrameSplitOperator.IsNumber(item.Mark.LineWidth)) dest.Mark.LineWidth=item.Mark.LineWidth;
80955
80979
  }
80980
+ if (item.Title)
80981
+ {
80982
+ if (item.Title.Font) dest.Title.Font=item.Title.Font;
80983
+ }
80984
+ if (item.CorssCursor)
80985
+ {
80986
+ if (item.CorssCursor.Font) dest.CorssCursor.Font=item.CorssCursor.Font;
80987
+ }
80988
+ if (item.Frame)
80989
+ {
80990
+ if (item.Frame.Font) dest.Frame.Font=item.Frame.Font;
80991
+ }
80956
80992
  }
80957
80993
 
80958
80994
  if (style.PopKLineChart)
@@ -127378,7 +127414,7 @@ var SCRIPT_CHART_NAME=
127378
127414
  CLIP_COLOR_STICK:"CLIP_COLOR_STICK", //上下柱子 裁剪
127379
127415
 
127380
127416
  DRAW_KLINE:"DRAWKLINE",
127381
- BASELINE_BAR:"BASELINE_BAR"
127417
+ BASELINE_BAR:"BASELINE_BAR",
127382
127418
  }
127383
127419
 
127384
127420
 
@@ -132337,6 +132373,24 @@ function APIScriptIndex(name,script,args,option, isOverlay)
132337
132373
 
132338
132374
  result.push(outVarItem);
132339
132375
  }
132376
+ else if (draw.DrawType=="VERTLINE") //竖线
132377
+ {
132378
+ drawItem.Text=draw.Text;
132379
+ drawItem.Name=draw.Name;
132380
+ drawItem.DrawType=draw.DrawType;
132381
+ drawItem.DrawData={ Data:this.FittingArray(draw.DrawData.Data,date,time,hqChart) };
132382
+
132383
+ outVarItem.Draw=drawItem;
132384
+ if (draw.Config)
132385
+ {
132386
+ var config=draw.Config;
132387
+ if (IFrameSplitOperator.IsString(config.LineWidth)) outVarItem.LineWidth=config.LineWidth;
132388
+ if (IFrameSplitOperator.IsNumber(config.LineType)) drawItem.DrawData.LineType=config.LineType;
132389
+ if (config.Color) outVarItem.Color=config.color;
132390
+ }
132391
+
132392
+ result.push(outVarItem);
132393
+ }
132340
132394
  else if (draw.DrawType=='STICKLINE') //柱子
132341
132395
  {
132342
132396
  drawItem.Name=draw.Name;
@@ -133938,7 +133992,7 @@ function GetBlackStyle()
133938
133992
  MultiDayBorderPen:"rgba(236,236,236,0.5)",
133939
133993
  FrameSplitPen: "rgba(236,236,236,0.13)", //分割线
133940
133994
  FrameSplitTextColor: "rgb(220,220,220)", //刻度文字颜色
133941
- FrameSplitTextFont: 12*GetDevicePixelRatio() +"px 微软雅黑", //坐标刻度文字字体
133995
+ FrameSplitTextFont: 14*GetDevicePixelRatio() +"px 微软雅黑", //坐标刻度文字字体
133942
133996
  FrameTitleBGColor: "rgb(0,0,0)", //标题栏背景色
133943
133997
  OverlayIndexTitleBGColor:'rgba(0,0,0,0.7)', //叠加指标背景色
133944
133998
 
@@ -133974,7 +134028,7 @@ function GetBlackStyle()
133974
134028
 
133975
134029
  CorssCursorBGColor: "rgb(43,54,69)", //十字光标背景
133976
134030
  CorssCursorTextColor: "rgb(255,255,255)",
133977
- CorssCursorTextFont: 12*GetDevicePixelRatio() +"px 微软雅黑",
134031
+ CorssCursorTextFont: 14*GetDevicePixelRatio() +"px 微软雅黑",
133978
134032
  CorssCursorHPenColor: "rgb(130,130,130)", //十字光标线段颜色
133979
134033
  CorssCursorVPenColor: "rgb(130,130,130)", //十字光标线段颜色
133980
134034
 
@@ -155198,6 +155252,10 @@ function JSPopMinuteChart()
155198
155252
  this.BGColor=g_JSChartResource.PopMinuteChart.BGColor;
155199
155253
  this.BorderColor=g_JSChartResource.PopMinuteChart.BorderColor;
155200
155254
 
155255
+ this.TitleFont=g_JSChartResource.PopMinuteChart.Title.Font; //指标标题字体
155256
+ this.CorssCursorFont=g_JSChartResource.PopMinuteChart.CorssCursor.Font; //十字光标
155257
+ this.FrameSplitTextFont=g_JSChartResource.PopMinuteChart.Frame.Font; //刻度文字
155258
+
155201
155259
  this.Minute=
155202
155260
  {
155203
155261
  Option:JSPopMinuteChart.GetMinuteOption(),
@@ -155279,13 +155337,31 @@ function JSPopMinuteChart()
155279
155337
  callback:(event, data, obj)=>{ this.OnKeyDown(event, data, obj); }
155280
155338
  };
155281
155339
 
155340
+ var reloadResourceEvent=
155341
+ {
155342
+ event:JSCHART_EVENT_ID.ON_RELOAD_RESOURCE,
155343
+ callback:(event, data, obj)=>{ this.LoadChartResource(obj); }
155344
+ }
155345
+
155346
+ var splitXEvent=
155347
+ {
155348
+ event:JSCHART_EVENT_ID.ON_SPLIT_XCOORDINATE,
155349
+ callback:(event, data, obj)=>{ this.OnSplitXCoordinate(event, data, obj); }
155350
+ };
155351
+
155352
+ var splitYEvent=
155353
+ {
155354
+ event:JSCHART_EVENT_ID.ON_SPLIT_YCOORDINATE,
155355
+ callback:(event, data, obj)=>{ this.OnSplitYCoordinate(event, data, obj); }
155356
+ }
155357
+
155282
155358
  if (Array.isArray(this.Minute.Option.EventCallback))
155283
155359
  {
155284
- this.Minute.Option.EventCallback.push(keyDownEvent);
155360
+ this.Minute.Option.EventCallback.unshift(keyDownEvent,reloadResourceEvent,splitYEvent,splitYEvent);
155285
155361
  }
155286
155362
  else
155287
155363
  {
155288
- this.Minute.Option.EventCallback=[keyDownEvent];
155364
+ this.Minute.Option.EventCallback=[keyDownEvent,reloadResourceEvent,splitXEvent,splitYEvent];
155289
155365
  }
155290
155366
 
155291
155367
  chart.SetOption(this.Minute.Option); //设置K线配置
@@ -155324,7 +155400,7 @@ function JSPopMinuteChart()
155324
155400
 
155325
155401
  this.OnCreateHQChart=function(chart)
155326
155402
  {
155327
-
155403
+ this.LoadChartResource(chart);
155328
155404
  }
155329
155405
 
155330
155406
  this.Destroy=function()
@@ -155445,6 +155521,10 @@ function JSPopMinuteChart()
155445
155521
  this.BGColor=g_JSChartResource.PopMinuteChart.BGColor;
155446
155522
  this.BorderColor=g_JSChartResource.PopMinuteChart.BorderColor;
155447
155523
 
155524
+ this.TitleFont=g_JSChartResource.PopMinuteChart.Title.Font;
155525
+ this.CorssCursorFont=g_JSChartResource.PopMinuteChart.CorssCursor.Font; //十字光标
155526
+ this.FrameSplitTextFont=g_JSChartResource.PopMinuteChart.Frame.Font
155527
+
155448
155528
  if (!this.DivDialog) return;
155449
155529
 
155450
155530
  this.UpdateStyle();
@@ -155452,6 +155532,35 @@ function JSPopMinuteChart()
155452
155532
  if (this.Minute.JSChart) this.Minute.JSChart.ReloadResource(option);
155453
155533
  }
155454
155534
 
155535
+ this.LoadChartResource=function(chart)
155536
+ {
155537
+ if (IFrameSplitOperator.IsNonEmptyArray(chart.TitlePaint))
155538
+ {
155539
+ for(var i=0;i<chart.TitlePaint.length;++i)
155540
+ {
155541
+ var item=chart.TitlePaint[i];
155542
+ if (!item) continue;
155543
+
155544
+ item.Font=this.TitleFont;
155545
+ }
155546
+ }
155547
+
155548
+ if (IFrameSplitOperator.IsNonEmptyArray(chart.WindowIndex))
155549
+ {
155550
+ for(var i=0;i<chart.WindowIndex.length;++i) //去掉指标里面的字体
155551
+ {
155552
+ var item=chart.WindowIndex[i];
155553
+ if (!item) continue;
155554
+ item.TitleFont=null;
155555
+ }
155556
+ }
155557
+
155558
+ if (chart.ChartCorssCursor)
155559
+ {
155560
+ chart.ChartCorssCursor.Font=this.CorssCursorFont;
155561
+ }
155562
+ }
155563
+
155455
155564
  this.SetLanguage=function(language)
155456
155565
  {
155457
155566
  if (!this.DivDialog) return;
@@ -155578,6 +155687,34 @@ function JSPopMinuteChart()
155578
155687
  finder.Chart.ClearData();
155579
155688
  this.HQChart.Draw();
155580
155689
  }
155690
+
155691
+ this.OnSplitXCoordinate=function(event, data, obj)
155692
+ {
155693
+ var frame=data.Frame;
155694
+ if (IFrameSplitOperator.IsNonEmptyArray(frame.VerticalInfo))
155695
+ {
155696
+ for(var i=0;i<frame.VerticalInfo.length;++i)
155697
+ {
155698
+ var item=frame.VerticalInfo[i];
155699
+ if (!item) continue;
155700
+ if (item.Font) item.Font=this.FrameSplitTextFont;
155701
+ }
155702
+ }
155703
+ }
155704
+
155705
+ this.OnSplitYCoordinate=function(event, data, obj)
155706
+ {
155707
+ var frame=data.Frame;
155708
+ if (IFrameSplitOperator.IsNonEmptyArray(frame.HorizontalInfo))
155709
+ {
155710
+ for(var i=0;i<frame.HorizontalInfo.length;++i)
155711
+ {
155712
+ var item=frame.HorizontalInfo[i];
155713
+ if (!item) continue;
155714
+ if (item.Font) item.Font=this.FrameSplitTextFont;
155715
+ }
155716
+ }
155717
+ }
155581
155718
  }
155582
155719
 
155583
155720
 
@@ -155605,7 +155742,7 @@ JSPopMinuteChart.GetMinuteOption=function()
155605
155742
  //BeforeOpen:{IsShow:true, Width:120, IsShowMultiDay:true, MulitiDayWidth:100, },
155606
155743
  //AfterClose:{IsShow:true, Width:100, IsShowMultiDay:true, MulitiDayWidth:50, ShareVol:2 }, //ShareVol:0=盘后成交量独立坐标, 1==盘后成交量主图共用 2==盘后成交量盘前共用
155607
155744
 
155608
- CorssCursorInfo:{ Left:2, Right:1, Bottom:1 },
155745
+ CorssCursorInfo:{ Left:1, Right:1, Bottom:1 },
155609
155746
 
155610
155747
  MinuteLine:
155611
155748
  {
@@ -155633,8 +155770,8 @@ JSPopMinuteChart.GetMinuteOption=function()
155633
155770
  {
155634
155771
  Left:20, //左边间距
155635
155772
  Right:20, //右边间距
155636
- Top:25,
155637
- Bottom:25,
155773
+ Top:20,
155774
+ Bottom:20,
155638
155775
 
155639
155776
  AutoLeft:{ Blank:10, MinWidth:60 },
155640
155777
  AutoRight:{ Blank:10, MinWidth:60 },
@@ -155665,6 +155802,11 @@ function JSTooltipMinuteChart()
155665
155802
 
155666
155803
  this.BGColor=g_JSChartResource.PopMinuteChart.BGColor;
155667
155804
  this.BorderColor=g_JSChartResource.PopMinuteChart.BorderColor;
155805
+
155806
+ this.TitleFont=g_JSChartResource.PopMinuteChart.Title.Font; //指标标题字体
155807
+ this.CorssCursorFont=g_JSChartResource.PopMinuteChart.CorssCursor.Font; //十字光标
155808
+ this.FrameSplitTextFont=g_JSChartResource.PopMinuteChart.Frame.Font; //刻度文字
155809
+
155668
155810
  this.OnCreatedCallback;
155669
155811
 
155670
155812
  this.Minute=
@@ -155712,6 +155854,35 @@ function JSTooltipMinuteChart()
155712
155854
  if (this.HQChart) this.Minute.Option.Language=g_JSChartLocalization.GetLanguageName(this.HQChart.LanguageID);
155713
155855
  this.Minute.Option.OnCreatedCallback=(chart)=>{ this.OnCreateHQChart(chart); }
155714
155856
  this.Minute.Option.NetworkFilter=(data, callback)=>{ this.NetworkFilter(data, callback); }
155857
+
155858
+
155859
+ var reloadResourceEvent=
155860
+ {
155861
+ event:JSCHART_EVENT_ID.ON_RELOAD_RESOURCE,
155862
+ callback:(event, data, obj)=>{ this.LoadChartResource(obj); }
155863
+ }
155864
+
155865
+ var splitXEvent=
155866
+ {
155867
+ event:JSCHART_EVENT_ID.ON_SPLIT_XCOORDINATE,
155868
+ callback:(event, data, obj)=>{ this.OnSplitXCoordinate(event, data, obj); }
155869
+ };
155870
+
155871
+ var splitYEvent=
155872
+ {
155873
+ event:JSCHART_EVENT_ID.ON_SPLIT_YCOORDINATE,
155874
+ callback:(event, data, obj)=>{ this.OnSplitYCoordinate(event, data, obj); }
155875
+ }
155876
+
155877
+ if (Array.isArray(this.Minute.Option.EventCallback))
155878
+ {
155879
+ this.Minute.Option.EventCallback.unshift(reloadResourceEvent,splitYEvent,splitYEvent);
155880
+ }
155881
+ else
155882
+ {
155883
+ this.Minute.Option.EventCallback=[reloadResourceEvent,splitXEvent,splitYEvent];
155884
+ }
155885
+
155715
155886
  chart.SetOption(this.Minute.Option); //设置K线配置
155716
155887
 
155717
155888
  document.body.appendChild(divDom);
@@ -155752,6 +155923,8 @@ function JSTooltipMinuteChart()
155752
155923
 
155753
155924
  this.OnCreateHQChart=function(chart)
155754
155925
  {
155926
+ this.LoadChartResource(chart);
155927
+
155755
155928
  if (this.OnCreatedCallback) this.OnCreatedCallback(chart);
155756
155929
  }
155757
155930
 
@@ -155832,6 +156005,10 @@ function JSTooltipMinuteChart()
155832
156005
  this.BGColor=g_JSChartResource.PopMinuteChart.BGColor;
155833
156006
  this.BorderColor=g_JSChartResource.PopMinuteChart.BorderColor;
155834
156007
 
156008
+ this.TitleFont=g_JSChartResource.PopMinuteChart.Title.Font; //指标标题字体
156009
+ this.CorssCursorFont=g_JSChartResource.PopMinuteChart.CorssCursor.Font; //十字光标
156010
+ this.FrameSplitTextFont=g_JSChartResource.PopMinuteChart.Frame.Font; //刻度文字
156011
+
155835
156012
  if (!this.DivDialog) return;
155836
156013
 
155837
156014
  this.UpdateStyle();
@@ -155839,6 +156016,63 @@ function JSTooltipMinuteChart()
155839
156016
  if (this.Minute.JSChart) this.Minute.JSChart.ReloadResource(option);
155840
156017
  }
155841
156018
 
156019
+ this.LoadChartResource=function(chart)
156020
+ {
156021
+ if (IFrameSplitOperator.IsNonEmptyArray(chart.TitlePaint))
156022
+ {
156023
+ for(var i=0;i<chart.TitlePaint.length;++i)
156024
+ {
156025
+ var item=chart.TitlePaint[i];
156026
+ if (!item) continue;
156027
+
156028
+ item.Font=this.TitleFont;
156029
+ }
156030
+ }
156031
+
156032
+ if (IFrameSplitOperator.IsNonEmptyArray(chart.WindowIndex))
156033
+ {
156034
+ for(var i=0;i<chart.WindowIndex.length;++i) //去掉指标里面的字体
156035
+ {
156036
+ var item=chart.WindowIndex[i];
156037
+ if (!item) continue;
156038
+ item.TitleFont=null;
156039
+ }
156040
+ }
156041
+
156042
+ if (chart.ChartCorssCursor)
156043
+ {
156044
+ chart.ChartCorssCursor.Font=this.CorssCursorFont;
156045
+ }
156046
+ }
156047
+
156048
+ this.OnSplitXCoordinate=function(event, data, obj)
156049
+ {
156050
+ var frame=data.Frame;
156051
+ if (IFrameSplitOperator.IsNonEmptyArray(frame.VerticalInfo))
156052
+ {
156053
+ for(var i=0;i<frame.VerticalInfo.length;++i)
156054
+ {
156055
+ var item=frame.VerticalInfo[i];
156056
+ if (!item) continue;
156057
+ if (item.Font) item.Font=this.FrameSplitTextFont;
156058
+ }
156059
+ }
156060
+ }
156061
+
156062
+ this.OnSplitYCoordinate=function(event, data, obj)
156063
+ {
156064
+ var frame=data.Frame;
156065
+ if (IFrameSplitOperator.IsNonEmptyArray(frame.HorizontalInfo))
156066
+ {
156067
+ for(var i=0;i<frame.HorizontalInfo.length;++i)
156068
+ {
156069
+ var item=frame.HorizontalInfo[i];
156070
+ if (!item) continue;
156071
+ if (item.Font) item.Font=this.FrameSplitTextFont;
156072
+ }
156073
+ }
156074
+ }
156075
+
155842
156076
  }
155843
156077
 
155844
156078
  JSTooltipMinuteChart.GetMinuteOption=function()
@@ -155865,7 +156099,7 @@ JSTooltipMinuteChart.GetMinuteOption=function()
155865
156099
  //BeforeOpen:{IsShow:true, Width:120, IsShowMultiDay:true, MulitiDayWidth:100, },
155866
156100
  //AfterClose:{IsShow:true, Width:100, IsShowMultiDay:true, MulitiDayWidth:50, ShareVol:2 }, //ShareVol:0=盘后成交量独立坐标, 1==盘后成交量主图共用 2==盘后成交量盘前共用
155867
156101
 
155868
- CorssCursorInfo:{ Left:2, Right:1, Bottom:1 },
156102
+ CorssCursorInfo:{ Left:1, Right:1, Bottom:1 },
155869
156103
 
155870
156104
  MinuteLine:
155871
156105
  {
@@ -155895,8 +156129,8 @@ JSTooltipMinuteChart.GetMinuteOption=function()
155895
156129
  {
155896
156130
  Left:20, //左边间距
155897
156131
  Right:120, //右边间距
155898
- Top:25,
155899
- Bottom:25,
156132
+ Top:20,
156133
+ Bottom:20,
155900
156134
 
155901
156135
  AutoLeft:{ Blank:10, MinWidth:40 },
155902
156136
  AutoRight:{ Blank:10, MinWidth:40 },
@@ -161308,7 +161542,7 @@ function HQChartScriptWorker()
161308
161542
 
161309
161543
 
161310
161544
 
161311
- var HQCHART_VERSION="1.1.14854";
161545
+ var HQCHART_VERSION="1.1.14861";
161312
161546
 
161313
161547
  function PrintHQChartVersion()
161314
161548
  {