hqchart 1.1.13311 → 1.1.13313

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.
@@ -5936,7 +5936,7 @@ var sep=rgb.indexOf(",")>-1?",":" ";// Turn "rgb(r,g,b)" into [r,g,b]
5936
5936
  rgb=rgb.substr(4).split(")")[0].split(sep);var r=(+rgb[0]).toString(16),g=(+rgb[1]).toString(16),b=(+rgb[2]).toString(16);if(r.length==1)r="0"+r;if(g.length==1)g="0"+g;if(b.length==1)b="0"+b;return"#"+r+g+b;};//16进制颜色转rgb
5937
5937
  IChartDrawPicture.HexToRGB=function(color){color=color.toLowerCase();var reg=/^#([0-9a-fA-f]{3}|[0-9a-fA-f]{6})$/;if(color&&reg.test(color)){if(color.length===4){var sColorNew="#";for(var i=1;i<4;i+=1){sColorNew+=color.slice(i,i+1).concat(color.slice(i,i+1));}color=sColorNew;}//处理六位的颜色值
5938
5938
  var sColorChange=[];for(var i=1;i<7;i+=2){sColorChange.push(parseInt("0x"+color.slice(i,i+2)));}return"rgb("+sColorChange.join(",")+")";}return null;};IChartDrawPicture.ArrayDrawPricture=[{Name:"线段",ClassName:'ChartDrawPictureLine',Create:function Create(){return new ChartDrawPictureLine();}},{Name:"射线",ClassName:'ChartDrawPictureHaflLine',Create:function Create(){return new ChartDrawPictureHaflLine();}},{Name:"箭头",ClassName:"ChartDrawArrowLine",Create:function Create(){return new ChartDrawArrowLine();}},{Name:"水平线",ClassName:'ChartDrawPictureHorizontalLine',Create:function Create(){return new ChartDrawPictureHorizontalLine();}},{Name:"趋势线",ClassName:'ChartDrawPictureTrendLine',Create:function Create(){return new ChartDrawPictureTrendLine();}},{Name:"矩形",ClassName:'ChartDrawPictureRect',Create:function Create(){return new ChartDrawPictureRect();}},{Name:"圆弧线",ClassName:'ChartDrawPictureArc',Create:function Create(){return new ChartDrawPictureArc();}},{Name:"M头W底",ClassName:'ChartDrawPictureWaveMW',Create:function Create(){return new ChartDrawPictureWaveMW();}},{Name:"头肩型",ClassName:"ChartDrawHeadShouldersBT",Create:function Create(){return new ChartDrawHeadShouldersBT();}},{Name:"平行线",ClassName:'ChartDrawPictureParallelLines',Create:function Create(){return new ChartDrawPictureParallelLines();}},{Name:"平行通道",ClassName:'ChartDrawPictureParallelChannel',Create:function Create(){return new ChartDrawPictureParallelChannel();}},{Name:"价格通道线",ClassName:'ChartDrawPicturePriceChannel',Create:function Create(){return new ChartDrawPicturePriceChannel();}},{Name:"文本",ClassName:'ChartDrawPictureText',Create:function Create(){return new ChartDrawPictureText();}},{Name:"江恩角度线",ClassName:'ChartDrawPictureGannFan',Create:function Create(){return new ChartDrawPictureGannFan();}},{Name:"阻速线",ClassName:'ChartDrawPictureResistanceLine',Create:function Create(){return new ChartDrawPictureResistanceLine();}},{Name:"黄金分割",ClassName:'ChartDrawPictureGoldenSection',Create:function Create(){return new ChartDrawPictureGoldenSection();}},{Name:"百分比线",ClassName:'ChartDrawPicturePercentage',Create:function Create(){return new ChartDrawPicturePercentage();}},{Name:"波段线",ClassName:'ChartDrawPictureWaveBand',Create:function Create(){return new ChartDrawPictureWaveBand();}},{Name:"三角形",ClassName:'ChartDrawPictureTriangle',Create:function Create(){return new ChartDrawPictureTriangle();}},{Name:"对称角度",ClassName:'ChartDrawPictureSymmetryAngle',Create:function Create(){return new ChartDrawPictureSymmetryAngle();}},{Name:"圆",ClassName:'ChartDrawPictureCircle',Create:function Create(){return new ChartDrawPictureCircle();}},{Name:"平行四边形",ClassName:'ChartDrawPictureQuadrangle',Create:function Create(){return new ChartDrawPictureQuadrangle();}},{Name:"斐波那契周期线",ClassName:'ChartDrawPictureFibonacci',Create:function Create(){return new ChartDrawPictureFibonacci();}},{Name:"线形回归线",ClassName:"ChartDrawLinearRegression",Create:function Create(){return new ChartDrawLinearRegression();}},{Name:"线形回归带",ClassName:"ChartDrawLinearRegression",Create:function Create(){return new ChartDrawLinearRegression({IsShowMaxMinLine:true});}},{Name:"延长线形回归带",ClassName:"ChartDrawLinearRegression",Create:function Create(){return new ChartDrawLinearRegression({IsShowMaxMinLine:true,IsShowExtendLine:true});}},{Name:"尺子",ClassName:"ChartDrawRuler",Create:function Create(){return new ChartDrawRuler();}},{Name:"标价线",ClassName:"ChartDrawPriceLine",Create:function Create(){return new ChartDrawPriceLine();}},{Name:"标价线2",ClassName:"ChartDrawPriceLineV2",Create:function Create(){return new ChartDrawPriceLineV2();}},{Name:"垂直线",ClassName:"ChartDrawVerticalLine",Create:function Create(){return new ChartDrawVerticalLine();}},{Name:"十字线",ClassName:"ChartDrawCrosshair",Create:function Create(){return new ChartDrawCrosshair();}},{Name:"波浪尺",ClassName:"ChartDrawWaveRuler",Create:function Create(){return new ChartDrawWaveRuler();}},{Name:"AB波浪尺",ClassName:"ChartDrawWaveRuler2Point",Create:function Create(){return new ChartDrawWaveRuler2Point();}},{Name:"箱型线",ClassName:"ChartDrawBox",Create:function Create(){return new ChartDrawBox();}},{Name:"2点画图例子",ClassName:"ChartDrawTwoPointDemo",Create:function Create(){return new ChartDrawTwoPointDemo();}},{Name:"3点画图例子",ClassName:"ChartDrawThreePointDemo",Create:function Create(){return new ChartDrawThreePointDemo();}},{Name:"水平线段",ClassName:"ChartDrawHLineSegment",Create:function Create(){return new ChartDrawHLineSegment();}},{Name:"平行射线",ClassName:"ChartDrawParallelRaysLines",Create:function Create(){return new ChartDrawParallelRaysLines();}},{ClassName:'ChartDrawPictureIconFont',Create:function Create(){return new ChartDrawPictureIconFont();}},//涂鸦 不绑定K线坐标
5939
- {Name:"涂鸦线段",ClassName:'ChartDrawGraffitiLine',Create:function Create(){return new ChartDrawGraffitiLine();}},{Name:"固定范围成交量分布图",ClassName:"ChartDrawVolProfile",Create:function Create(){return new ChartDrawVolProfile();}},{Name:"DisjointChannel",ClassName:"ChartDrawDisjontChannel",Create:function Create(){return new ChartDrawDisjontChannel();}},{Name:"FlatTop",ClassName:"ChartDrawFlatTop",Create:function Create(){return new ChartDrawFlatTop();}},{Name:"水平线2",ClassName:"ChartDrawHLine",Create:function Create(){return new ChartDrawHLine();}},//trading view样式
5939
+ {Name:"涂鸦线段",ClassName:'ChartDrawGraffitiLine',Create:function Create(){return new ChartDrawGraffitiLine();}},{Name:"固定范围成交量分布图",ClassName:"ChartDrawVolProfile",Create:function Create(){return new ChartDrawVolProfile();}},{Name:"DisjointChannel",ClassName:"ChartDrawDisjontChannel",Create:function Create(){return new ChartDrawDisjontChannel();}},{Name:"FlatTop",ClassName:"ChartDrawFlatTop",Create:function Create(){return new ChartDrawFlatTop();}},{Name:"水平线2",ClassName:"ChartDrawHLine",Create:function Create(){return new ChartDrawHLine();}},{Name:"MonitorLine",ClassName:"ChartDrawMonitorLine",Create:function Create(){return new ChartDrawMonitorLine();}},//trading view样式
5940
5940
  {Name:"Note",ClassName:"ChartDrawNote",Create:function Create(){return new ChartDrawNote();}},{Name:"AnchoredText",ClassName:"ChartDrawAnchoredText",Create:function Create(){return new ChartDrawAnchoredText();}},{Name:"PriceLabel",ClassName:"ChartDrawPriceLabel",Create:function Create(){return new ChartDrawPriceLabel();}},{Name:"PriceNote",ClassName:"ChartDrawPriceNote",Create:function Create(){return new ChartDrawPriceNote();}},{Name:"FibWedge",ClassName:"ChartDrawFibWedge",Create:function Create(){return new ChartDrawFibWedge();}},{Name:"FibRetracement",ClassName:"ChartFibRetracement",Create:function Create(){return new ChartFibRetracement();}},//斐波那契回测
5941
5941
  {Name:"FibSpeedResistanceFan",ClassName:"ChartFibSpeedResistanceFan",Create:function Create(){return new ChartFibSpeedResistanceFan();}},//斐波那契扇形
5942
5942
  {Name:"PriceRange",ClassName:"ChartPriceRange",Create:function Create(){return new ChartPriceRange();}},{Name:"DateRange",ClassName:"ChartDateRange",Create:function Create(){return new ChartDateRange();}}];IChartDrawPicture.MapIonFont=new _map2.default([["icon-arrow_up",{Text:'\uE683',Color:'#318757',Family:"iconfont"}],["icon-arrow_down",{Text:'\uE681',Color:'#db563e',Family:"iconfont"}],["icon-arrow_right",{Text:'\uE682',Color:'#318757',Family:"iconfont"}],["icon-arrow_left",{Text:'\uE680',Color:'#318757',Family:"iconfont"}]]);IChartDrawPicture.GetDrawPictureByName=function(value){for(var i in IChartDrawPicture.ArrayDrawPricture){var item=IChartDrawPicture.ArrayDrawPricture[i];if(item.Name==value)return item;}return null;};IChartDrawPicture.GetDrawPictureByClassName=function(value){for(var i in IChartDrawPicture.ArrayDrawPricture){var item=IChartDrawPicture.ArrayDrawPricture[i];if(item.ClassName==value)return item;}return null;};//注册一个新的画图工具 {Name:中文名字, ClassName:类名, Create:function()}
@@ -6284,7 +6284,24 @@ this.newMethod();delete this.newMethod;this.ClassName='ChartDrawVerticalLine';th
6284
6284
  this.Canvas.restore();};}//画图工具-十字线 支持横屏
6285
6285
  function ChartDrawCrosshair(){this.newMethod=IChartDrawPicture;//派生
6286
6286
  this.newMethod();delete this.newMethod;this.ClassName='ChartDrawCrosshair';this.PointCount=1;this.IsPointIn=this.IsPointIn_XYValue_Line;this.IsHScreen=false;this.GetXYCoordinate=this.GetXYCoordinate_default;this.Draw=function(){this.LinePoint=[];if(this.IsFrameMinSize())return;if(!this.IsShow)return;if(!this.Frame||!this.Frame.Data)return;var data=this.Frame.Data;var drawPoint=this.CalculateDrawPoint({IsCheckX:false,IsCheckY:false});if(!drawPoint)return;if(drawPoint.length!=1)return;this.IsHScreen=this.Frame.IsHScreen;var pt=drawPoint[0];var chartBorder=this.Frame.ChartBorder;var border=this.Frame.GetBorder();if(this.IsHScreen){var xValue=Math.round(this.Frame.GetXData(pt.Y,false))+data.DataOffset;if(xValue<0)xValue=0;else if(xValue>=data.Data.length)xValue=data.Data.length-1;var yLine=this.Frame.GetXFromIndex(xValue-data.DataOffset,false);yLine=ToFixedPoint2(this.LineWidth,yLine);var xLine=ToFixedPoint2(this.LineWidth,pt.X);var left=border.LeftEx;var right=border.RightEx;var top=border.Top;var bottom=border.Bottom;var ptStart={X:left,Y:yLine};var ptEnd={X:right,Y:yLine};var ptStart2={X:xLine,Y:top};var ptEnd2={X:xLine,Y:bottom};}else{var xValue=Math.round(this.Frame.GetXData(pt.X,false))+data.DataOffset;if(xValue<0)xValue=0;else if(xValue>=data.Data.length)xValue=data.Data.length-1;var xLine=this.Frame.GetXFromIndex(xValue-data.DataOffset,false);xLine=ToFixedPoint2(this.LineWidth,xLine);var yLine=ToFixedPoint2(this.LineWidth,pt.Y);var top=border.TopEx;var bottom=border.BottomEx;var left=border.Left;var right=border.Right;var ptStart={X:xLine,Y:top};var ptEnd={X:xLine,Y:bottom};var ptStart2={X:left,Y:yLine};var ptEnd2={X:right,Y:yLine};}this.ClipFrame();this.SetLineWidth();this.Canvas.strokeStyle=this.LineColor;this.Canvas.beginPath();this.Canvas.moveTo(ptStart.X,ptStart.Y);this.Canvas.lineTo(ptEnd.X,ptEnd.Y);this.Canvas.moveTo(ptStart2.X,ptStart2.Y);this.Canvas.lineTo(ptEnd2.X,ptEnd2.Y);this.Canvas.stroke();this.RestoreLineWidth();var line={Start:ptStart,End:ptEnd};var line2={Start:ptStart2,End:ptEnd2};this.LinePoint.push(line);this.LinePoint.push(line2);if(this.Status==10)this.DrawPoint(drawPoint);//画点
6287
- this.Canvas.restore();};}//画图工具-波浪尺
6287
+ this.Canvas.restore();};}//画图工具-监测线
6288
+ function ChartDrawMonitorLine(){this.newMethod=IChartDrawPicture;//派生
6289
+ this.newMethod();delete this.newMethod;this.ClassName='ChartDrawMonitorLine';this.PointCount=1;this.IsPointIn=this.IsPointIn_XYValue_Line;this.IsHScreen=false;this.GetXYCoordinate=this.GetXYCoordinate_default;this.FormatLabelTextCallback=null;this.LineColor='rgb(255,215,0)';this.LabelConfig={Font:12*GetDevicePixelRatio()+'px \u5FAE\u8F6F\u96C5\u9ED1',BGColor:"rgb(30,144,255)",YTextOffset:4,LineColor:"rgba(255,215,0,0.8)",LineDash:[3,5]};this.SetOption=function(option){if(option.LineColor)this.LineColor=option.LineColor;if(option.Label){var item=option.Label;var dest=this.LabelConfig;if(item.Font)dest.Font=item.Font;if(item.BGColor)dest.BGColor=item.BGColor;if(item.LineColor)dest.LineColor=item.LineColor;if(item.LineDash)dest.LineDash=item.LineDash;if(IFrameSplitOperator.IsNumber(item.YTextOffset))dest.YTextOffset=item.YTextOffset;}if(option.FormatLabelText)this.FormatLabelTextCallback=option.FormatLabelText;};this.Draw=function(){this.LinePoint=[];if(this.IsFrameMinSize())return;if(!this.IsShow)return;if(!this.Frame||!this.Frame.Data)return;var data=this.Frame.Data;if(!IFrameSplitOperator.IsNonEmptyArray(data.Data))return;if(this.Point.length!=1)return;if(this.Value.length!=1)return;this.IsHScreen=this.Frame.IsHScreen;if(this.IsHScreen)return;if(this.Status==20)this.DrawMoveLine();else if(this.Status==10)this.DrawMonitorLine(data);};this.DrawMoveLine=function(){var border=this.Frame.ChartBorder.GetBorder();var pt=this.Point[0];var x=ToFixedPoint(pt.X);this.ClipFrame();this.Canvas.strokeStyle=this.LineColor;this.Canvas.beginPath();this.Canvas.moveTo(x,border.TopEx);this.Canvas.lineTo(x,border.BottomEx);this.Canvas.stroke();this.Canvas.restore();};this.DrawMonitorLine=function(data){var isMinute=this.Frame.IsMinuteFrame();var dataWidth=this.Frame.DataWidth;var distanceWidth=this.Frame.DistanceWidth;var xPointCount=this.Frame.XPointCount;if(this.IsHScreen){//var border=this.Frame.ChartBorder.GetHScreenBorder();
6290
+ //var chartright=border.BottomEx;
6291
+ //var xOffset=border.TopEx+distanceWidth/2.0+g_JSChartResource.FrameLeftMargin;
6292
+ }else{var border=this.Frame.ChartBorder.GetBorder();var xOffset=border.LeftEx+distanceWidth/2.0+g_JSChartResource.FrameLeftMargin;var chartright=border.RightEx;}var ptData=this.Value[0];this.ClipFrame();var labelInfo=null;for(var i=data.DataOffset,j=0;i<data.Data.length&&j<xPointCount;++i,++j,xOffset+=dataWidth+distanceWidth){var item=data.Data[i];if(isMinute){var x=this.Frame.GetXFromIndex(j);}else{var left=xOffset;var right=xOffset+dataWidth;if(right>chartright)break;var x=left+(right-left)/2;}if(i==ptData.XValue)//起始
6293
+ {this.Canvas.strokeStyle=this.LineColor;this.Canvas.beginPath();this.Canvas.moveTo(x,border.TopEx);this.Canvas.lineTo(x,border.BottomEx);this.Canvas.stroke();var line={Start:{X:x,Y:border.TopEx},End:{X:x,Y:border.BottomEx}};this.LinePoint.push(line);}else if(i==data.Data.length-1)//结束
6294
+ {if(this.LabelConfig.LineDash)this.Canvas.setLineDash(this.LabelConfig.LineDash);this.Canvas.strokeStyle=this.LabelConfig.LineColor;this.Canvas.beginPath();this.Canvas.moveTo(x,border.TopEx);this.Canvas.lineTo(x,border.BottomEx);this.Canvas.stroke();if(this.LabelConfig.LineDash)this.Canvas.setLineDash([]);labelInfo={Left:right,Data:data,StartIndex:ptData.XValue,AryText:[]};}}this.Canvas.restore();if(labelInfo)this.DrawLabel(labelInfo);};this.DrawLabel=function(labelInfo){if(!this.FormatLabelTextCallback)return;this.FormatLabelTextCallback(labelInfo);if(!IFrameSplitOperator.IsNonEmptyArray(labelInfo.AryText))return;if(!IFrameSplitOperator.IsNumber(labelInfo.YValue))return;/*
6295
+ labelInfo.YValue=7.15;
6296
+ labelInfo.AryText=
6297
+ [
6298
+ { Name:"标题1:", Text:"6666", NameColor:"rgb(255,255,255)", TextColor:"rgb(30,10,30)" },
6299
+ { Name:"标题2:", Text:"08.00", NameColor:"rgb(255,255,255)", TextColor:"rgb(30,10,30)" },
6300
+ { Name:"标题3:", Text:"999.1", NameColor:"rgb(255,255,255)", TextColor:"rgb(30,10,30)" },
6301
+ { Name:"标题4:", Text:"320" , NameColor:"rgb(255,255,255)", TextColor:"rgb(30,10,30)"},
6302
+ { Name:"标题5:", Text:"77775.77", NameColor:"rgb(255,255,255)", TextColor:"rgb(30,10,30)" }
6303
+ ]
6304
+ */var y=this.Frame.GetYFromData(labelInfo.YValue,false);this.Canvas.font=this.LabelConfig.Font;this.Canvas.textAlign="left";this.Canvas.textBaseline="top";var lineHeight=this.Canvas.measureText("擎").width+2;var maxWidth=0,lineCount=0;for(var i=0;i<labelInfo.AryText.length;++i){var item=labelInfo.AryText[i];item.NameWidth=0;item.TextWidth=0;if(item.Name)item.NameWidth=this.Canvas.measureText(item.Name).width+2;if(item.Text)item.TextWidth=this.Canvas.measureText(item.Text).width+2;var itemWidth=item.NameWidth+item.TextWidth;if(maxWidth<itemWidth)maxWidth=itemWidth;++lineCount;}var rtBG={Left:labelInfo.Left+1,Top:y,Width:maxWidth+4,Height:lineHeight*lineCount+4};rtBG.Right=rtBG.Left+rtBG.Width;rtBG.Bottom=rtBG.Top+rtBG.Height;if(this.LabelConfig.BGColor){this.Canvas.fillStyle=this.LabelConfig.BGColor;this.Canvas.fillRect(ToFixedRect(rtBG.Left),ToFixedRect(rtBG.Top),ToFixedRect(rtBG.Width),ToFixedRect(rtBG.Height));}var xText=rtBG.Left+2;var yText=rtBG.Top+this.LabelConfig.YTextOffset;for(var i=0;i<labelInfo.AryText.length;++i){var item=labelInfo.AryText[i];if(item.Name){this.Canvas.fillStyle=item.NameColor;this.Canvas.fillText(item.Name,xText,yText);}if(item.Text){this.Canvas.fillStyle=item.TextColor;this.Canvas.fillText(item.Text,xText+item.NameWidth,yText);}yText+=lineHeight;}};}//画图工具-波浪尺
6288
6305
  function ChartDrawWaveRuler(){this.newMethod=IChartDrawPicture;//派生
6289
6306
  this.newMethod();delete this.newMethod;this.ClassName='ChartDrawWaveRuler';this.PointCount=3;this.Font=16*GetDevicePixelRatio()+"px 微软雅黑";this.IsPointIn=this.IsPointIn_XYValue_Line;this.LastPoint;this.LinePoint;this.ScaleRuler=g_JSChartResource.ChartDrawWaveRuler.ScaleRuler;this.RulerWidth=g_JSChartResource.ChartDrawWaveRuler.RulerWidth;;//刻度尺长度
6290
6307
  this.RulerLineWidth=g_JSChartResource.ChartDrawWaveRuler.RulerLineWidth;this.MaxScaleRuler=g_JSChartResource.ChartDrawWaveRuler.MaxScaleRuler;//尺子最大的高度比
@@ -13220,7 +13237,7 @@ JSPopMenu.SEPARATOR_LINE_NAME="MENU_SEPARATOR";//分割线
13220
13237
 
13221
13238
  内置画图工具 设置框
13222
13239
  */var JS_DRAWTOOL_MENU_ID={CMD_SELECTED_ID:1,CMD_CHANGE_LINE_COLOR_ID:2,CMD_DELETE_ALL_DRAW_CHART_ID:3,CMD_ERASE_DRAW_CHART_ID:4,CMD_ENABLE_MAGNET_ID:5//画图工具磁体功能
13223
- };function JSDialogDrawTool(){this.AryChartGroup=[{Title:"线段",AryChart:[{Title:'线段',ClassName:'hqchart_drawtool icon-draw_line',Type:0,Data:{ID:"线段"}},{Title:'射线',ClassName:'hqchart_drawtool icon-draw_rays',Type:0,Data:{ID:"射线"}},{Title:'标价线',ClassName:'hqchart_drawtool icon-price_line',Type:0,Data:{ID:"标价线"}},{Title:'垂直线',ClassName:'hqchart_drawtool icon-vertical_line',Type:0,Data:{ID:"垂直线"}},{Title:'十字线',ClassName:'hqchart_drawtool icon-tubiao_shizixian',Type:0,Data:{ID:"十字线"}},{Title:'箭头',ClassName:'hqchart_drawtool icon-draw_rays',Type:0,Data:{ID:"箭头"}},{Title:'趋势线',ClassName:'hqchart_drawtool icon-draw_trendline',Type:0,Data:{ID:"趋势线"}},{Title:'水平线',ClassName:'hqchart_drawtool icon-draw_hline',Type:0,Data:{ID:"水平线"}},{Title:'涂鸦线段',ClassName:'hqchart_drawtool icon-draw_line',Type:0,Data:{ID:"涂鸦线段"}},{Title:'阻速线',ClassName:'hqchart_drawtool icon-draw_resline',Type:0,Data:{ID:"阻速线"}},{Title:'江恩角度线',ClassName:'hqchart_drawtool icon-jiangenjiaoduxian',Type:0,Data:{ID:"江恩角度线"}}]},{Title:"通道",AryChart:[{Title:'平行线',ClassName:'hqchart_drawtool icon-draw_parallel_lines',Type:0,Data:{ID:"平行线"}},{Title:'水平线段',ClassName:'hqchart_drawtool icon-draw_hlinesegment',Type:0,Data:{ID:"水平线段"}},{Title:'平行射线',ClassName:'hqchart_drawtool icon-draw_p_rays_lines',Type:0,Data:{ID:"平行射线"}},{Title:'平行通道',ClassName:'hqchart_drawtool icon-draw_parallelchannel',Type:0,Data:{ID:"平行通道"}},{Title:'价格通道线',ClassName:'hqchart_drawtool icon-draw_pricechannel',Type:0,Data:{ID:"价格通道线"}},{Title:'箱型线',ClassName:'hqchart_drawtool icon-draw_box',Type:0,Data:{ID:"箱型线"}},{Title:"不相交通道",ClassName:"hqchart_drawtool icon-buxiangjiaojiao",Type:0,Data:{ID:"DisjointChannel"}},{Title:"平滑顶/底",ClassName:"hqchart_drawtool icon-tubiao_buxiangjiaotongdao",Type:0,Data:{ID:"FlatTop"}},{Title:"波段线",ClassName:'hqchart_drawtool icon-draw_waveband',Type:0,Data:{ID:"波段线"}},{Title:"百分比线",ClassName:'hqchart_drawtool icon-PercentageLine',Type:0,Data:{ID:"百分比线"}},{Title:"黄金分割",ClassName:'hqchart_drawtool icon-GoldenSection',Type:0,Data:{ID:"黄金分割"}},{Title:"线形回归线",ClassName:'hqchart_drawtool icon-linear_3',Type:0,Data:{ID:"线形回归线"}},{Title:"线形回归带",ClassName:'hqchart_drawtool icon-linear_1',Type:0,Data:{ID:"线形回归带"}},{Title:"延长线形回归带",ClassName:'hqchart_drawtool icon-linear_2',Type:0,Data:{ID:"延长线形回归带"}}]},{Title:"形状",AryChart:[{Title:'圆弧线',ClassName:'hqchart_drawtool icon-draw_arc',Type:0,Data:{ID:"圆弧线"}},{Title:'矩形',ClassName:'hqchart_drawtool icon-rectangle',Type:0,Data:{ID:"矩形"}},{Title:'平行四边形',ClassName:'hqchart_drawtool icon-draw_quadrangle',Type:0,Data:{ID:"平行四边形"}},{Title:'三角形',ClassName:'hqchart_drawtool icon-draw_triangle',Type:0,Data:{ID:"三角形"}},{Title:'圆',ClassName:'hqchart_drawtool icon-draw_circle',Type:0,Data:{ID:"圆"}},{Title:'对称角度',ClassName:'hqchart_drawtool icon-draw_symangle',Type:0,Data:{ID:"对称角度"}}]},{Title:"波浪线",AryChart:[{Title:'M头W底',ClassName:'hqchart_drawtool icon-draw_wavemw',Type:0,Data:{ID:"M头W底"}},{Title:'头肩型',ClassName:'hqchart_drawtool icon-draw_head_shoulders_bt',Type:0,Data:{ID:"头肩型"}},{Title:'波浪尺',ClassName:'hqchart_drawtool icon-waveruler',Type:0,Data:{ID:"波浪尺"}},{Title:'AB波浪尺',ClassName:'hqchart_drawtool icon-waveruler',Type:0,Data:{ID:"AB波浪尺"}}]},{Title:"斐波那契",AryChart:[{Title:'斐波那契周期线',ClassName:'hqchart_drawtool icon-feibonaqizhouqixian',Type:0,Data:{ID:"斐波那契周期线"}},{Title:'斐波那契楔形',ClassName:'hqchart_drawtool icon-feibonaqiqixing',Type:0,Data:{ID:"FibWedge"}},{Title:'斐波那契回撤',ClassName:'hqchart_drawtool icon-feibonaqihuiche',Type:0,Data:{ID:"FibRetracement"}},{Title:'斐波那契速度阻力扇',ClassName:'hqchart_drawtool icon-feibonaqisuduzulishan',Type:0,Data:{ID:"FibSpeedResistanceFan"}}]},{Title:"测量工具",AryChart:[{Title:'价格范围',ClassName:'hqchart_drawtool icon-shijianfanwei',Type:0,Data:{ID:"PriceRange"}},{Title:'时间范围',ClassName:'hqchart_drawtool icon-jiagefanwei',Type:0,Data:{ID:"DateRange"}}]},{Title:"文字",AryChart:[{Title:"文字",ClassName:'hqchart_drawtool icon-draw_text',Type:0,Data:{ID:"文本"}},{Title:"锚点文字",ClassName:'hqchart_drawtool icon-maodianwenzi',Type:0,Data:{ID:"AnchoredText"}},{Title:"注释",ClassName:'hqchart_drawtool icon-maodian ',Type:0,Data:{ID:"Note"}},{Title:'价格标签',ClassName:'hqchart_drawtool icon-Tooltip',Type:0,Data:{ID:"PriceLabel"}},{Title:'价格注释',ClassName:'hqchart_drawtool icon-tooltiptext',Type:0,Data:{ID:"PriceNote"}},{Title:'向上箭头',ClassName:'iconfont icon-arrow_up',Type:0,Data:{ID:"icon-arrow_up"}},{Title:'向下箭头',ClassName:'iconfont icon-arrow_down',Type:0,Data:{ID:"icon-arrow_down"}},{Title:'向左箭头',ClassName:'iconfont icon-arrow_left',Type:0,Data:{ID:"icon-arrow_left"}},{Title:'向右箭头',ClassName:'iconfont icon-arrow_right',Type:0,Data:{ID:"icon-arrow_right"}}]}];this.ToolConfig={Title:"工具",AryTool:[{Title:"选中",ClassName:'hqchart_drawtool icon-arrow',Type:1,Data:{ID:JS_DRAWTOOL_MENU_ID.CMD_SELECTED_ID}},{Title:'尺子',ClassName:'hqchart_drawtool icon-ruler',Type:0,Data:{ID:"尺子"}},{Title:"磁铁",ClassName:'hqchart_drawtool icon-xifu',Type:2,Data:{ID:JS_DRAWTOOL_MENU_ID.CMD_ENABLE_MAGNET_ID}},{Title:"点击切换颜色",ClassName:'hqchart_drawtool icon-fangkuai',Type:2,Data:{ID:JS_DRAWTOOL_MENU_ID.CMD_CHANGE_LINE_COLOR_ID}},{Title:"擦除画线",ClassName:'hqchart_drawtool icon-a-xiangpicachuxiangpica',Type:2,Data:{ID:JS_DRAWTOOL_MENU_ID.CMD_ERASE_DRAW_CHART_ID}},{Title:"删除所有画线",ClassName:'hqchart_drawtool icon-recycle_bin',Type:2,Data:{ID:JS_DRAWTOOL_MENU_ID.CMD_DELETE_ALL_DRAW_CHART_ID}}]};this.DivDialog=null;this.AryDivChart=[];this.HQChart=null;this.LineColor='rgb(255,140,0)';this.LineColorIndex=0;this.RandomLineColor=["rgb(255,69,0)","rgb(0,191,255)","rgb(255,0,255)","rgb(255,105,180)"];this.LineWidth=1*GetDevicePixelRatio();this.ColumnCount=4;this.DragTitle=null;this.Inital=function(hqchart){this.LineColor=g_JSChartResource.DrawPicture.LineColor[0];this.RandomLineColor.splice(0,0,this.LineColor);this.HQChart=hqchart;};this.Create=function(){var _this69=this;var divDom=document.createElement("div");divDom.className='UMyChart_DrawTool_Dialog_Div';var divTitle=document.createElement("div");divTitle.className='UMyChart_DrawTool_Title_Div';divTitle.innerText="画图工具";divTitle.onmousedown=function(e){_this69.OnMouseDownTitle(e);};var divClose=document.createElement("div");divClose.className='UMyChart_DrawTool_Close_Div';divClose.innerText="x";divClose.onmousedown=function(e){_this69.Close(e);};divTitle.appendChild(divClose);divDom.appendChild(divTitle);var table=document.createElement("table");table.className="UMyChart_DrawTool_Table";divDom.appendChild(table);var tbody=document.createElement("tbody");tbody.className="UMyChart_DrawTool_Tbody";table.appendChild(tbody);for(var i=0;i<this.AryChartGroup.length;++i){var item=this.AryChartGroup[i];if(!IFrameSplitOperator.IsNonEmptyArray(item.AryChart))continue;this.CreateChartGroupItem(item,tbody);var trDom=document.createElement("tr");trDom.className='UMyChart_DrawTool_Group_End_Tr';tbody.appendChild(trDom);}//工具栏
13240
+ };function JSDialogDrawTool(){this.AryChartGroup=[{Title:"线段",AryChart:[{Title:'线段',ClassName:'hqchart_drawtool icon-draw_line',Type:0,Data:{ID:"线段"}},{Title:'射线',ClassName:'hqchart_drawtool icon-draw_rays',Type:0,Data:{ID:"射线"}},{Title:'标价线',ClassName:'hqchart_drawtool icon-price_line',Type:0,Data:{ID:"标价线"}},{Title:'垂直线',ClassName:'hqchart_drawtool icon-vertical_line',Type:0,Data:{ID:"垂直线"}},{Title:'十字线',ClassName:'hqchart_drawtool icon-tubiao_shizixian',Type:0,Data:{ID:"十字线"}},{Title:'箭头',ClassName:'hqchart_drawtool icon-draw_rays',Type:0,Data:{ID:"箭头"}},{Title:'趋势线',ClassName:'hqchart_drawtool icon-draw_trendline',Type:0,Data:{ID:"趋势线"}},{Title:'水平线',ClassName:'hqchart_drawtool icon-draw_hline',Type:0,Data:{ID:"水平线"}},{Title:'涂鸦线段',ClassName:'hqchart_drawtool icon-draw_line',Type:0,Data:{ID:"涂鸦线段"}},{Title:'阻速线',ClassName:'hqchart_drawtool icon-draw_resline',Type:0,Data:{ID:"阻速线"}},{Title:'江恩角度线',ClassName:'hqchart_drawtool icon-jiangenjiaoduxian',Type:0,Data:{ID:"江恩角度线"}}]},{Title:"通道",AryChart:[{Title:'平行线',ClassName:'hqchart_drawtool icon-draw_parallel_lines',Type:0,Data:{ID:"平行线"}},{Title:'水平线段',ClassName:'hqchart_drawtool icon-draw_hlinesegment',Type:0,Data:{ID:"水平线段"}},{Title:'平行射线',ClassName:'hqchart_drawtool icon-draw_p_rays_lines',Type:0,Data:{ID:"平行射线"}},{Title:'平行通道',ClassName:'hqchart_drawtool icon-draw_parallelchannel',Type:0,Data:{ID:"平行通道"}},{Title:'价格通道线',ClassName:'hqchart_drawtool icon-draw_pricechannel',Type:0,Data:{ID:"价格通道线"}},{Title:'箱型线',ClassName:'hqchart_drawtool icon-draw_box',Type:0,Data:{ID:"箱型线"}},{Title:"不相交通道",ClassName:"hqchart_drawtool icon-buxiangjiaojiao",Type:0,Data:{ID:"DisjointChannel"}},{Title:"平滑顶/底",ClassName:"hqchart_drawtool icon-tubiao_buxiangjiaotongdao",Type:0,Data:{ID:"FlatTop"}},{Title:"波段线",ClassName:'hqchart_drawtool icon-draw_waveband',Type:0,Data:{ID:"波段线"}},{Title:"百分比线",ClassName:'hqchart_drawtool icon-PercentageLine',Type:0,Data:{ID:"百分比线"}},{Title:"黄金分割",ClassName:'hqchart_drawtool icon-GoldenSection',Type:0,Data:{ID:"黄金分割"}},{Title:"线形回归线",ClassName:'hqchart_drawtool icon-linear_3',Type:0,Data:{ID:"线形回归线"}},{Title:"线形回归带",ClassName:'hqchart_drawtool icon-linear_1',Type:0,Data:{ID:"线形回归带"}},{Title:"延长线形回归带",ClassName:'hqchart_drawtool icon-linear_2',Type:0,Data:{ID:"延长线形回归带"}}]},{Title:"形状",AryChart:[{Title:'圆弧线',ClassName:'hqchart_drawtool icon-draw_arc',Type:0,Data:{ID:"圆弧线"}},{Title:'矩形',ClassName:'hqchart_drawtool icon-rectangle',Type:0,Data:{ID:"矩形"}},{Title:'平行四边形',ClassName:'hqchart_drawtool icon-draw_quadrangle',Type:0,Data:{ID:"平行四边形"}},{Title:'三角形',ClassName:'hqchart_drawtool icon-draw_triangle',Type:0,Data:{ID:"三角形"}},{Title:'圆',ClassName:'hqchart_drawtool icon-draw_circle',Type:0,Data:{ID:"圆"}},{Title:'对称角度',ClassName:'hqchart_drawtool icon-draw_symangle',Type:0,Data:{ID:"对称角度"}}]},{Title:"波浪线",AryChart:[{Title:'M头W底',ClassName:'hqchart_drawtool icon-draw_wavemw',Type:0,Data:{ID:"M头W底"}},{Title:'头肩型',ClassName:'hqchart_drawtool icon-draw_head_shoulders_bt',Type:0,Data:{ID:"头肩型"}},{Title:'波浪尺',ClassName:'hqchart_drawtool icon-waveruler',Type:0,Data:{ID:"波浪尺"}},{Title:'AB波浪尺',ClassName:'hqchart_drawtool icon-waveruler',Type:0,Data:{ID:"AB波浪尺"}}]},{Title:"斐波那契",AryChart:[{Title:'斐波那契周期线',ClassName:'hqchart_drawtool icon-feibonaqizhouqixian',Type:0,Data:{ID:"斐波那契周期线"}},{Title:'斐波那契楔形',ClassName:'hqchart_drawtool icon-feibonaqiqixing',Type:0,Data:{ID:"FibWedge"}},{Title:'斐波那契回撤',ClassName:'hqchart_drawtool icon-feibonaqihuiche',Type:0,Data:{ID:"FibRetracement"}},{Title:'斐波那契速度阻力扇',ClassName:'hqchart_drawtool icon-feibonaqisuduzulishan',Type:0,Data:{ID:"FibSpeedResistanceFan"}}]},{Title:"测量工具",AryChart:[{Title:'价格范围',ClassName:'hqchart_drawtool icon-shijianfanwei',Type:0,Data:{ID:"PriceRange"}},{Title:'时间范围',ClassName:'hqchart_drawtool icon-jiagefanwei',Type:0,Data:{ID:"DateRange"}},{Title:"监测线",ClassName:"hqchart_drawtool icon-jiance",Type:0,Data:{ID:"MonitorLine"}}]},{Title:"文字",AryChart:[{Title:"文字",ClassName:'hqchart_drawtool icon-draw_text',Type:0,Data:{ID:"文本"}},{Title:"锚点文字",ClassName:'hqchart_drawtool icon-maodianwenzi',Type:0,Data:{ID:"AnchoredText"}},{Title:"注释",ClassName:'hqchart_drawtool icon-maodian ',Type:0,Data:{ID:"Note"}},{Title:'价格标签',ClassName:'hqchart_drawtool icon-Tooltip',Type:0,Data:{ID:"PriceLabel"}},{Title:'价格注释',ClassName:'hqchart_drawtool icon-tooltiptext',Type:0,Data:{ID:"PriceNote"}},{Title:'向上箭头',ClassName:'iconfont icon-arrow_up',Type:0,Data:{ID:"icon-arrow_up"}},{Title:'向下箭头',ClassName:'iconfont icon-arrow_down',Type:0,Data:{ID:"icon-arrow_down"}},{Title:'向左箭头',ClassName:'iconfont icon-arrow_left',Type:0,Data:{ID:"icon-arrow_left"}},{Title:'向右箭头',ClassName:'iconfont icon-arrow_right',Type:0,Data:{ID:"icon-arrow_right"}}]}];this.ToolConfig={Title:"工具",AryTool:[{Title:"选中",ClassName:'hqchart_drawtool icon-arrow',Type:1,Data:{ID:JS_DRAWTOOL_MENU_ID.CMD_SELECTED_ID}},{Title:'尺子',ClassName:'hqchart_drawtool icon-ruler',Type:0,Data:{ID:"尺子"}},{Title:"磁铁",ClassName:'hqchart_drawtool icon-xifu',Type:2,Data:{ID:JS_DRAWTOOL_MENU_ID.CMD_ENABLE_MAGNET_ID}},{Title:"点击切换颜色",ClassName:'hqchart_drawtool icon-fangkuai',Type:2,Data:{ID:JS_DRAWTOOL_MENU_ID.CMD_CHANGE_LINE_COLOR_ID}},{Title:"擦除画线",ClassName:'hqchart_drawtool icon-a-xiangpicachuxiangpica',Type:2,Data:{ID:JS_DRAWTOOL_MENU_ID.CMD_ERASE_DRAW_CHART_ID}},{Title:"删除所有画线",ClassName:'hqchart_drawtool icon-recycle_bin',Type:2,Data:{ID:JS_DRAWTOOL_MENU_ID.CMD_DELETE_ALL_DRAW_CHART_ID}}]};this.DivDialog=null;this.AryDivChart=[];this.HQChart=null;this.LineColor='rgb(255,140,0)';this.LineColorIndex=0;this.RandomLineColor=["rgb(255,69,0)","rgb(0,191,255)","rgb(255,0,255)","rgb(255,105,180)"];this.LineWidth=1*GetDevicePixelRatio();this.ColumnCount=4;this.DragTitle=null;this.Inital=function(hqchart){this.LineColor=g_JSChartResource.DrawPicture.LineColor[0];this.RandomLineColor.splice(0,0,this.LineColor);this.HQChart=hqchart;};this.Create=function(){var _this69=this;var divDom=document.createElement("div");divDom.className='UMyChart_DrawTool_Dialog_Div';var divTitle=document.createElement("div");divTitle.className='UMyChart_DrawTool_Title_Div';divTitle.innerText="画图工具";divTitle.onmousedown=function(e){_this69.OnMouseDownTitle(e);};var divClose=document.createElement("div");divClose.className='UMyChart_DrawTool_Close_Div';divClose.innerText="x";divClose.onmousedown=function(e){_this69.Close(e);};divTitle.appendChild(divClose);divDom.appendChild(divTitle);var table=document.createElement("table");table.className="UMyChart_DrawTool_Table";divDom.appendChild(table);var tbody=document.createElement("tbody");tbody.className="UMyChart_DrawTool_Tbody";table.appendChild(tbody);for(var i=0;i<this.AryChartGroup.length;++i){var item=this.AryChartGroup[i];if(!IFrameSplitOperator.IsNonEmptyArray(item.AryChart))continue;this.CreateChartGroupItem(item,tbody);var trDom=document.createElement("tr");trDom.className='UMyChart_DrawTool_Group_End_Tr';tbody.appendChild(trDom);}//工具栏
13224
13241
  this.CreateToolGroup(tbody);this.DivDialog=divDom;document.body.appendChild(divDom);};this.Destroy=function(){this.AryDivChart=[];document.body.remove(this.DivDialog);this.DivDialog=null;};this.CreateChartGroupItem=function(groupItem,tbody){var trDom=document.createElement("tr");trDom.className='UMyChart_DrawTool_Group_Tr';tbody.appendChild(trDom);var tdDom=document.createElement("td");tdDom.className="UMyChart_DrawTool_Group_Td";tdDom.innerText=groupItem.Title;tdDom.colSpan=this.ColumnCount;trDom.appendChild(tdDom);var chartCount=groupItem.AryChart.length;for(var i=0,j=0;i<chartCount;){var trDom=document.createElement("tr");trDom.className='UMyChart_DrawTool_Tr';for(j=0;j<this.ColumnCount&&i<chartCount;++j,++i){var item=groupItem.AryChart[i];this.CreateChartItem(item,trDom);}tbody.appendChild(trDom);}};this.CreateChartItem=function(item,trDom){var _this70=this;var tdDom=document.createElement("td");tdDom.className="UMyChart_DrawTool_Td";tdDom.title=item.Title;trDom.appendChild(tdDom);var spanDom=document.createElement("span");spanDom.className=item.ClassName;spanDom.classList.add("UMyChart_DrawTool_Span");tdDom.appendChild(spanDom);var data={Item:item,TD:tdDom,Span:spanDom};tdDom.onmousedown=function(e){_this70.OnClickItem(e,data);};//点击
13225
13242
  this.AryDivChart.push(data);};this.OnClickItem=function(e,data){console.log('[JSDialogDrawTool::OnClickChartItem] ',data);if(!data.Item||!data.Item.Data)return;var type=data.Item.Type;var id=data.Item.Data.ID;if(type==2&&id==JS_DRAWTOOL_MENU_ID.CMD_CHANGE_LINE_COLOR_ID){this.OnChangeLineColor(data);}else if(type==2&&id==JS_DRAWTOOL_MENU_ID.CMD_DELETE_ALL_DRAW_CHART_ID){this.DeleteAllChart();}else if(type==2&&id==JS_DRAWTOOL_MENU_ID.CMD_ERASE_DRAW_CHART_ID){this.ClearAllSelectedChart();this.ClearCurrnetDrawPicture();this.EnableEraseChart(true);}else if(type==1&&id==JS_DRAWTOOL_MENU_ID.CMD_SELECTED_ID){this.ClearAllSelectedChart();this.ClearCurrnetDrawPicture();this.EnableEraseChart(false);}else if(type==2&&id==JS_DRAWTOOL_MENU_ID.CMD_ENABLE_MAGNET_ID){this.ChangeMagnet(data);}else if(type==0){this.ClearAllSelectedChart();this.EnableEraseChart(false);data.Span.classList.remove("UMyChart_DrawTool_Span");data.Span.classList.add("UMyChart_DrawTool_Span_Selected");this.CreateDrawPicture(data);}};//清空选中状态
13226
13243
  this.ClearAllSelectedChart=function(){for(var i=0;i<this.AryDivChart.length;++i){var item=this.AryDivChart[i];if(item.Item.Type==2)continue;item.Span.classList.remove("UMyChart_DrawTool_Span_Selected");item.Span.classList.add("UMyChart_DrawTool_Span");}};this.CreateToolGroup=function(tbody){var trDom=document.createElement("tr");trDom.className='UMyChart_DrawTool_Group_Tr';tbody.appendChild(trDom);var tdDom=document.createElement("td");tdDom.className="UMyChart_DrawTool_Group_Td";tdDom.innerText=this.ToolConfig.Title;tdDom.colSpan=this.ColumnCount;trDom.appendChild(tdDom);var chartCount=this.ToolConfig.AryTool.length;for(var i=0,j=0;i<chartCount;){var trDom=document.createElement("tr");trDom.className='UMyChart_DrawTool_Tr';for(j=0;j<this.ColumnCount&&i<chartCount;++j,++i){var item=this.ToolConfig.AryTool[i];this.CreateToolItem(item,trDom);}tbody.appendChild(trDom);}};this.CreateToolItem=function(item,trDom){var _this71=this;var tdDom=document.createElement("td");tdDom.className="UMyChart_DrawTool_Td";tdDom.title=item.Title;trDom.appendChild(tdDom);var spanDom=document.createElement("span");spanDom.className=item.ClassName;spanDom.classList.add("UMyChart_DrawTool_Span");tdDom.appendChild(spanDom);var data={Item:item,TD:tdDom,Span:spanDom};if(item.Type==2&&item.Data.ID==JS_DRAWTOOL_MENU_ID.CMD_CHANGE_LINE_COLOR_ID)//颜色
@@ -13247,7 +13264,7 @@ hisData.Symbol=message.symbol;}var stockObj={HQDataType:HQ_DATA_TYPE.KLINE_ID,St
13247
13264
  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);};}/********************************************************************************
13248
13265
  * 版本信息输出
13249
13266
  *
13250
- */var HQCHART_VERSION="1.1.13310";function PrintHQChartVersion(){var log='*************************************************************************************************************\n*\n* HQChart Ver: '+HQCHART_VERSION+' \n* \n* License: Apache License 2.0 \n* Source: https://github.com/jones2000/HQChart\n*\n*************************************************************************************************************\n';console.log(log);}PrintHQChartVersion();//把给外界调用的方法暴露出来
13267
+ */var HQCHART_VERSION="1.1.13312";function PrintHQChartVersion(){var log='*************************************************************************************************************\n*\n* HQChart Ver: '+HQCHART_VERSION+' \n* \n* License: Apache License 2.0 \n* Source: https://github.com/jones2000/HQChart\n*\n*************************************************************************************************************\n';console.log(log);}PrintHQChartVersion();//把给外界调用的方法暴露出来
13251
13268
  exports.default=(_jsChartInit$jsChartS={jsChartInit:JSChart.Init,jsChartStyle:JSChart.SetStyle,// IsIndexSymbol:IsIndexSymbol,
13252
13269
  // BaseIndex:BaseIndex,
13253
13270
  // ChartLine:ChartLine,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "hqchart",
3
- "version": "1.1.13311",
3
+ "version": "1.1.13313",
4
4
  "description": "HQChart - H5, 微信小程序 沪深/港股/数字货币/期货/美股 K线图(kline),走势图,缩放,拖拽,十字光标,画图工具,截图,筹码图. 分析家语法,通达信语法,(麦语法),第3方数据对接",
5
5
  "main": "lib/main.js",
6
6
  "scripts": {
@@ -101,6 +101,7 @@ function JSDialogDrawTool()
101
101
  [
102
102
  { Title: '价格范围', ClassName: 'hqchart_drawtool icon-shijianfanwei', Type:0, Data:{ ID:"PriceRange" } },
103
103
  { Title: '时间范围', ClassName: 'hqchart_drawtool icon-jiagefanwei', Type:0, Data:{ ID:"DateRange" } },
104
+ { Title: "监测线", ClassName:"hqchart_drawtool icon-jiance", Type:0, Data:{ ID:"MonitorLine"} },
104
105
  ]
105
106
  },
106
107
  {
@@ -55587,6 +55587,8 @@ IChartDrawPicture.ArrayDrawPricture=
55587
55587
 
55588
55588
  { Name:"水平线2", ClassName:"ChartDrawHLine", Create:function() { return new ChartDrawHLine(); }},
55589
55589
 
55590
+ { Name:"MonitorLine", ClassName:"ChartDrawMonitorLine", Create:function() { return new ChartDrawMonitorLine(); }},
55591
+
55590
55592
 
55591
55593
  //trading view样式
55592
55594
  { Name:"Note", ClassName:"ChartDrawNote", Create:function() { return new ChartDrawNote(); } },
@@ -60442,6 +60444,222 @@ function ChartDrawCrosshair()
60442
60444
  }
60443
60445
  }
60444
60446
 
60447
+ //画图工具-监测线
60448
+ function ChartDrawMonitorLine()
60449
+ {
60450
+ this.newMethod=IChartDrawPicture; //派生
60451
+ this.newMethod();
60452
+ delete this.newMethod;
60453
+
60454
+ this.ClassName='ChartDrawMonitorLine';
60455
+ this.PointCount=1;
60456
+ this.IsPointIn=this.IsPointIn_XYValue_Line;
60457
+ this.IsHScreen=false;
60458
+ this.GetXYCoordinate=this.GetXYCoordinate_default;
60459
+ this.FormatLabelTextCallback=null;
60460
+
60461
+ this.LineColor='rgb(255,215,0)'
60462
+ this.LabelConfig=
60463
+ {
60464
+ Font:`${12*GetDevicePixelRatio()}px 微软雅黑`,
60465
+ BGColor:"rgb(30,144,255)", YTextOffset:4,
60466
+ LineColor:"rgba(255,215,0,0.8)",
60467
+ LineDash:[3,5],
60468
+ }
60469
+
60470
+
60471
+ this.SetOption=function(option)
60472
+ {
60473
+ if (option.LineColor) this.LineColor=option.LineColor;
60474
+ if (option.Label)
60475
+ {
60476
+ var item=option.Label;
60477
+ var dest=this.LabelConfig
60478
+ if (item.Font) dest.Font=item.Font;
60479
+ if (item.BGColor) dest.BGColor=item.BGColor;
60480
+ if (item.LineColor) dest.LineColor=item.LineColor;
60481
+ if (item.LineDash) dest.LineDash=item.LineDash;
60482
+ if (IFrameSplitOperator.IsNumber(item.YTextOffset)) dest.YTextOffset=item.YTextOffset;
60483
+ }
60484
+
60485
+ if (option.FormatLabelText) this.FormatLabelTextCallback=option.FormatLabelText;
60486
+ }
60487
+
60488
+ this.Draw=function()
60489
+ {
60490
+ this.LinePoint=[];
60491
+ if (this.IsFrameMinSize()) return;
60492
+ if (!this.IsShow) return;
60493
+
60494
+ if (!this.Frame || !this.Frame.Data) return;
60495
+ var data=this.Frame.Data;
60496
+ if (!IFrameSplitOperator.IsNonEmptyArray(data.Data)) return;
60497
+
60498
+ if (this.Point.length!=1) return;
60499
+ if (this.Value.length!=1) return;
60500
+ this.IsHScreen=this.Frame.IsHScreen;
60501
+ if (this.IsHScreen) return;
60502
+
60503
+ if (this.Status==20) this.DrawMoveLine();
60504
+ else if (this.Status==10) this.DrawMonitorLine(data);
60505
+ }
60506
+
60507
+ this.DrawMoveLine=function()
60508
+ {
60509
+ var border=this.Frame.ChartBorder.GetBorder();
60510
+ var pt=this.Point[0];
60511
+ var x=ToFixedPoint(pt.X);
60512
+ this.ClipFrame();
60513
+
60514
+ this.Canvas.strokeStyle=this.LineColor;
60515
+ this.Canvas.beginPath();
60516
+ this.Canvas.moveTo(x,border.TopEx);
60517
+ this.Canvas.lineTo(x,border.BottomEx);
60518
+ this.Canvas.stroke();
60519
+
60520
+ this.Canvas.restore();
60521
+ }
60522
+
60523
+ this.DrawMonitorLine=function(data)
60524
+ {
60525
+ var isMinute=this.Frame.IsMinuteFrame();
60526
+ var dataWidth=this.Frame.DataWidth;
60527
+ var distanceWidth=this.Frame.DistanceWidth;
60528
+ var xPointCount=this.Frame.XPointCount;
60529
+
60530
+ if (this.IsHScreen)
60531
+ {
60532
+ //var border=this.Frame.ChartBorder.GetHScreenBorder();
60533
+ //var chartright=border.BottomEx;
60534
+ //var xOffset=border.TopEx+distanceWidth/2.0+g_JSChartResource.FrameLeftMargin;
60535
+ }
60536
+ else
60537
+ {
60538
+ var border=this.Frame.ChartBorder.GetBorder();
60539
+ var xOffset=border.LeftEx+distanceWidth/2.0+g_JSChartResource.FrameLeftMargin;
60540
+ var chartright=border.RightEx;
60541
+ }
60542
+
60543
+ var ptData=this.Value[0];
60544
+ this.ClipFrame();
60545
+
60546
+ var labelInfo=null;
60547
+ for(var i=data.DataOffset,j=0;i<data.Data.length && j<xPointCount;++i,++j,xOffset+=(dataWidth+distanceWidth))
60548
+ {
60549
+ var item=data.Data[i];
60550
+
60551
+ if (isMinute)
60552
+ {
60553
+ var x=this.Frame.GetXFromIndex(j);
60554
+ }
60555
+ else
60556
+ {
60557
+ var left=xOffset;
60558
+ var right=xOffset+dataWidth;
60559
+ if (right>chartright) break;
60560
+ var x=left+(right-left)/2;
60561
+ }
60562
+
60563
+ if (i==ptData.XValue) //起始
60564
+ {
60565
+ this.Canvas.strokeStyle=this.LineColor;
60566
+ this.Canvas.beginPath();
60567
+ this.Canvas.moveTo(x,border.TopEx);
60568
+ this.Canvas.lineTo(x,border.BottomEx);
60569
+ this.Canvas.stroke();
60570
+
60571
+ var line={Start:{X:x, Y:border.TopEx}, End:{X:x, Y:border.BottomEx}};
60572
+ this.LinePoint.push(line);
60573
+ }
60574
+ else if (i==data.Data.length-1) //结束
60575
+ {
60576
+ if (this.LabelConfig.LineDash) this.Canvas.setLineDash(this.LabelConfig.LineDash);
60577
+ this.Canvas.strokeStyle=this.LabelConfig.LineColor;
60578
+ this.Canvas.beginPath();
60579
+ this.Canvas.moveTo(x,border.TopEx);
60580
+ this.Canvas.lineTo(x,border.BottomEx);
60581
+ this.Canvas.stroke();
60582
+ if (this.LabelConfig.LineDash) this.Canvas.setLineDash([]);
60583
+
60584
+ labelInfo={ Left:right, Data:data, StartIndex:ptData.XValue, AryText:[] };
60585
+ }
60586
+ }
60587
+
60588
+ this.Canvas.restore();
60589
+
60590
+ if (labelInfo) this.DrawLabel(labelInfo);
60591
+ }
60592
+
60593
+ this.DrawLabel=function(labelInfo)
60594
+ {
60595
+ if (!this.FormatLabelTextCallback) return;
60596
+ this.FormatLabelTextCallback(labelInfo);
60597
+ if (!IFrameSplitOperator.IsNonEmptyArray(labelInfo.AryText)) return;
60598
+ if (!IFrameSplitOperator.IsNumber(labelInfo.YValue)) return;
60599
+
60600
+ /*
60601
+ labelInfo.YValue=7.15;
60602
+ labelInfo.AryText=
60603
+ [
60604
+ { Name:"标题1:", Text:"6666", NameColor:"rgb(255,255,255)", TextColor:"rgb(30,10,30)" },
60605
+ { Name:"标题2:", Text:"08.00", NameColor:"rgb(255,255,255)", TextColor:"rgb(30,10,30)" },
60606
+ { Name:"标题3:", Text:"999.1", NameColor:"rgb(255,255,255)", TextColor:"rgb(30,10,30)" },
60607
+ { Name:"标题4:", Text:"320" , NameColor:"rgb(255,255,255)", TextColor:"rgb(30,10,30)"},
60608
+ { Name:"标题5:", Text:"77775.77", NameColor:"rgb(255,255,255)", TextColor:"rgb(30,10,30)" }
60609
+ ]
60610
+ */
60611
+
60612
+ var y=this.Frame.GetYFromData(labelInfo.YValue,false);
60613
+ this.Canvas.font=this.LabelConfig.Font;
60614
+ this.Canvas.textAlign="left";
60615
+ this.Canvas.textBaseline="top";
60616
+ var lineHeight=this.Canvas.measureText("擎").width+2;
60617
+ var maxWidth=0, lineCount=0;
60618
+ for(var i=0;i<labelInfo.AryText.length;++i)
60619
+ {
60620
+ var item=labelInfo.AryText[i];
60621
+ item.NameWidth=0;
60622
+ item.TextWidth=0;
60623
+ if (item.Name) item.NameWidth=this.Canvas.measureText(item.Name).width+2;
60624
+ if (item.Text) item.TextWidth=this.Canvas.measureText(item.Text).width+2;
60625
+
60626
+ var itemWidth=item.NameWidth+item.TextWidth;
60627
+ if (maxWidth<itemWidth) maxWidth=itemWidth;
60628
+ ++lineCount;
60629
+ }
60630
+
60631
+ var rtBG={ Left:labelInfo.Left+1, Top:y, Width:maxWidth+4, Height:lineHeight*lineCount+4 };
60632
+ rtBG.Right=rtBG.Left+rtBG.Width;
60633
+ rtBG.Bottom=rtBG.Top+rtBG.Height;
60634
+ if (this.LabelConfig.BGColor)
60635
+ {
60636
+ this.Canvas.fillStyle=this.LabelConfig.BGColor
60637
+ this.Canvas.fillRect(ToFixedRect(rtBG.Left),ToFixedRect(rtBG.Top),ToFixedRect(rtBG.Width),ToFixedRect(rtBG.Height));
60638
+ }
60639
+
60640
+ var xText=rtBG.Left+2;
60641
+ var yText=rtBG.Top+this.LabelConfig.YTextOffset;
60642
+ for(var i=0;i<labelInfo.AryText.length;++i)
60643
+ {
60644
+ var item=labelInfo.AryText[i];
60645
+
60646
+ if (item.Name)
60647
+ {
60648
+ this.Canvas.fillStyle=item.NameColor;
60649
+ this.Canvas.fillText(item.Name,xText,yText);
60650
+ }
60651
+
60652
+ if (item.Text)
60653
+ {
60654
+ this.Canvas.fillStyle=item.TextColor;
60655
+ this.Canvas.fillText(item.Text,xText+item.NameWidth ,yText);
60656
+ }
60657
+
60658
+ yText+=lineHeight;
60659
+ }
60660
+ }
60661
+ }
60662
+
60445
60663
  //画图工具-波浪尺
60446
60664
  function ChartDrawWaveRuler()
60447
60665
  {
@@ -54,6 +54,12 @@
54
54
  <div class="content unicode" style="display: block;">
55
55
  <ul class="icon_lists dib-box">
56
56
 
57
+ <li class="dib">
58
+ <span class="icon hqchart_drawtool">&#xe936;</span>
59
+ <div class="name">监测</div>
60
+ <div class="code-name">&amp;#xe936;</div>
61
+ </li>
62
+
57
63
  <li class="dib">
58
64
  <span class="icon hqchart_drawtool">&#xe79d;</span>
59
65
  <div class="name">图标_十字线</div>
@@ -402,9 +408,9 @@
402
408
  <pre><code class="language-css"
403
409
  >@font-face {
404
410
  font-family: 'hqchart_drawtool';
405
- src: url('iconfont.woff2?t=1715613859609') format('woff2'),
406
- url('iconfont.woff?t=1715613859609') format('woff'),
407
- url('iconfont.ttf?t=1715613859609') format('truetype');
411
+ src: url('iconfont.woff2?t=1715871387338') format('woff2'),
412
+ url('iconfont.woff?t=1715871387338') format('woff'),
413
+ url('iconfont.ttf?t=1715871387338') format('truetype');
408
414
  }
409
415
  </code></pre>
410
416
  <h3 id="-iconfont-">第二步:定义使用 iconfont 的样式</h3>
@@ -430,6 +436,15 @@
430
436
  <div class="content font-class">
431
437
  <ul class="icon_lists dib-box">
432
438
 
439
+ <li class="dib">
440
+ <span class="icon hqchart_drawtool icon-jiance"></span>
441
+ <div class="name">
442
+ 监测
443
+ </div>
444
+ <div class="code-name">.icon-jiance
445
+ </div>
446
+ </li>
447
+
433
448
  <li class="dib">
434
449
  <span class="icon hqchart_drawtool icon-tubiao_shizixian"></span>
435
450
  <div class="name">
@@ -952,6 +967,14 @@
952
967
  <div class="content symbol">
953
968
  <ul class="icon_lists dib-box">
954
969
 
970
+ <li class="dib">
971
+ <svg class="icon svg-icon" aria-hidden="true">
972
+ <use xlink:href="#icon-jiance"></use>
973
+ </svg>
974
+ <div class="name">监测</div>
975
+ <div class="code-name">#icon-jiance</div>
976
+ </li>
977
+
955
978
  <li class="dib">
956
979
  <svg class="icon svg-icon" aria-hidden="true">
957
980
  <use xlink:href="#icon-tubiao_shizixian"></use>
@@ -1,8 +1,8 @@
1
1
  @font-face {
2
2
  font-family: "hqchart_drawtool"; /* Project id 4529603 */
3
- src: url('iconfont.woff2?t=1715613859609') format('woff2'),
4
- url('iconfont.woff?t=1715613859609') format('woff'),
5
- url('iconfont.ttf?t=1715613859609') format('truetype');
3
+ src: url('iconfont.woff2?t=1715871387338') format('woff2'),
4
+ url('iconfont.woff?t=1715871387338') format('woff'),
5
+ url('iconfont.ttf?t=1715871387338') format('truetype');
6
6
  }
7
7
 
8
8
  .hqchart_drawtool {
@@ -13,6 +13,10 @@
13
13
  -moz-osx-font-smoothing: grayscale;
14
14
  }
15
15
 
16
+ .icon-jiance:before {
17
+ content: "\e936";
18
+ }
19
+
16
20
  .icon-tubiao_shizixian:before {
17
21
  content: "\e79d";
18
22
  }
@@ -1 +1 @@
1
- window._iconfont_svg_string_4529603='<svg><symbol id="icon-tubiao_shizixian" viewBox="0 0 1024 1024"><path d="M896 469.333333h-256c-4.266667 0-12.8 0-17.066667 4.266667-12.8-34.133333-38.4-59.733333-72.533333-72.533333 4.266667-4.266667 4.266667-12.8 4.266667-17.066667V128c0-25.6-17.066667-42.666667-42.666667-42.666667s-42.666667 17.066667-42.666667 42.666667v256c0 4.266667 0 12.8 4.266667 17.066667-34.133333 12.8-59.733333 38.4-72.533333 72.533333-4.266667-4.266667-12.8-4.266667-17.066667-4.266667H128c-25.6 0-42.666667 17.066667-42.666667 42.666667s17.066667 42.666667 42.666667 42.666667h256c4.266667 0 12.8 0 17.066667-4.266667 12.8 34.133333 38.4 59.733333 72.533333 72.533333-4.266667 4.266667-4.266667 12.8-4.266667 17.066667v256c0 25.6 17.066667 42.666667 42.666667 42.666667s42.666667-17.066667 42.666667-42.666667v-256c0-4.266667 0-12.8-4.266667-17.066667 34.133333-12.8 59.733333-38.4 72.533333-72.533333 4.266667 4.266667 12.8 4.266667 17.066667 4.266667h256c25.6 0 42.666667-17.066667 42.666667-42.666667s-17.066667-42.666667-42.666667-42.666667z m-384 93.866667c-29.866667 0-51.2-25.6-51.2-51.2s25.6-51.2 51.2-51.2 51.2 25.6 51.2 51.2-21.333333 51.2-51.2 51.2z" ></path></symbol><symbol id="icon-xifu" viewBox="0 0 1024 1024"><path d="M449 62l138.6 126-84.6 91.8-138.6-126L449 62z m370.8 336.6l138.6 126-84.6 93.6-138.6-126 84.6-93.6z m-104.4 117l-189 207C468.8 787.4 369.8 791 305 733.4c-64.8-57.6-68.4-156.6-10.8-221.4l189-208.8-138.6-126-189 208.8C26 526.4 36.8 744.2 177.2 872c140.4 127.8 358.2 117 486-23.4l190.8-207-138.6-126z" ></path></symbol><symbol id="icon-maodianwenzi" viewBox="0 0 1024 1024"><path d="M124.342857 117.028571h530.285714v36.571429H124.342857z" fill="" ></path><path d="M373.028571 135.314286h29.257143v753.371428h-29.257143zM124.342857 135.314286h29.257143v76.8h-29.257143zM625.371429 135.314286h29.257142v76.8h-29.257142z" fill="" ></path><path d="M296.228571 870.4h190.171429v36.571429H296.228571z" fill="" ></path><path d="M716.8 486.4h36.571429v387.657143h-36.571429z" fill="" ></path><path d="M735.085714 906.971429c-113.371429 0-193.828571-124.342857-193.828571-128l29.257143-18.285715s73.142857 109.714286 164.571428 109.714286c54.857143 0 106.057143-36.571429 153.6-109.714286l29.257143 21.942857c-54.857143 80.457143-117.028571 124.342857-182.857143 124.342858z" fill="" ></path><path d="M632.685714 643.657143h204.8v36.571428h-204.8z" fill="" ></path><path d="M735.085714 519.314286m-43.885714 0a43.885714 43.885714 0 1 0 87.771429 0 43.885714 43.885714 0 1 0-87.771429 0Z" fill="" ></path><path d="M735.085714 581.485714c-32.914286 0-62.171429-29.257143-62.171428-62.171428 0-32.914286 29.257143-62.171429 62.171428-62.171429s62.171429 29.257143 62.171429 62.171429c-3.657143 32.914286-29.257143 62.171429-62.171429 62.171428z m0-87.771428c-14.628571 0-25.6 10.971429-25.6 25.6s10.971429 25.6 25.6 25.6 25.6-10.971429 25.6-25.6-14.628571-25.6-25.6-25.6z" fill="" ></path></symbol><symbol id="icon-maodian" viewBox="0 0 1024 1024"><path d="M511.146667 286.08a150.762667 150.762667 0 0 0-147.626667 121.6 150.613333 150.613333 0 0 0 90.453333 168.533333 150.826667 150.826667 0 0 0 183.04-55.68 150.592 150.592 0 0 0-18.986666-190.293333 150.058667 150.058667 0 0 0-106.88-44.16zM512 60.16c97.92 0 191.786667 39.68 259.84 109.653333 143.36 147.626667 143.36 381.653333 0 529.28L512 963.84 252.16 699.093333c-143.36-147.626667-143.36-381.653333 0-529.28C320.213333 99.626667 414.08 60.16 512 60.16z" fill="#148AFF" ></path></symbol><symbol id="icon-feibonaqisuduzulishan" viewBox="0 0 1024 1024"><path d="M658.285714 438.857143c-3.657143-10.971429-14.628571-21.942857-25.6-29.257143-3.657143 0-3.657143-3.657143-7.314285-3.657143-10.971429-7.314286-21.942857-7.314286-32.914286-7.314286-40.228571 0-73.142857 32.914286-73.142857 73.142858 0 14.628571 3.657143 25.6 10.971428 36.571428 7.314286 10.971429 14.628571 18.285714 25.6 25.6h3.657143c10.971429 7.314286 21.942857 7.314286 32.914286 7.314286 10.971429 0 18.285714-3.657143 29.257143-7.314286 3.657143 0 10.971429-3.657143 14.628571-7.314286 10.971429-7.314286 18.285714-18.285714 21.942857-29.257142 3.657143-10.971429 7.314286-18.285714 7.314286-29.257143 0-7.314286-3.657143-18.285714-7.314286-29.257143z m-54.857143 69.485714H585.142857c-7.314286 0-10.971429-3.657143-18.285714-7.314286-3.657143-3.657143-7.314286-10.971429-10.971429-14.628571V475.428571c0-18.285714 10.971429-29.257143 25.6-36.571428h10.971429c3.657143 0 10.971429 0 14.628571 3.657143 3.657143 0 10.971429 3.657143 10.971429 7.314285 7.314286 3.657143 10.971429 10.971429 10.971428 21.942858v3.657142c0 14.628571-10.971429 29.257143-25.6 32.914286zM226.742857 866.742857c-3.657143-29.257143-21.942857-51.2-47.542857-62.171428-7.314286-3.657143-14.628571-3.657143-25.6-3.657143h-10.971429c-36.571429 7.314286-62.171429 36.571429-62.171428 73.142857 0 40.228571 32.914286 73.142857 73.142857 73.142857 29.257143 0 54.857143-18.285714 65.828571-43.885714 3.657143-10.971429 7.314286-18.285714 7.314286-29.257143v-7.314286z m-73.142857 43.885714c-21.942857 0-36.571429-18.285714-36.571429-36.571428 0-21.942857 18.285714-36.571429 36.571429-36.571429s36.571429 14.628571 36.571429 36.571429-18.285714 36.571429-36.571429 36.571428z" fill="" ></path><path d="M735.085714 885.028571c0 7.314286-14.628571 10.971429-10.971428 18.285715H201.142857v-36.571429h522.971429c-3.657143 3.657143 10.971429 10.971429 10.971428 18.285714z" fill="" ></path><path d="M943.542857 866.742857v36.571429h-237.714286c3.657143-3.657143 3.657143-10.971429 3.657143-18.285715s0-10.971429-3.657143-18.285714h237.714286zM208.457143 420.571429c3.657143 0 7.314286-3.657143 10.971428-3.657143l-3.657142 113.371428-7.314286 292.571429v10.971428h-36.571429v-3.657142l7.314286-299.885715 3.657143-113.371428c3.657143 3.657143 14.628571 3.657143 25.6 3.657143z" fill="" ></path><path d="M226.742857 84.114286L219.428571 387.657143v36.571428c-7.314286-3.657143-18.285714-7.314286-25.6-3.657142-3.657143 0-7.314286 0-10.971428 3.657142v-40.228571l7.314286-303.542857 36.571428 3.657143zM164.900571 817.517714l363.629715-684.726857 32.292571 17.152-363.629714 684.726857zM197.632 844.032l717.677714-216.758857 10.605715 35.035428-717.714286 216.722286z" fill="" ></path><path d="M566.857143 501.028571c3.657143 3.657143 10.971429 7.314286 18.285714 7.314286l-29.257143 29.257143-343.771428 325.485714-25.6-25.6 343.771428-321.828571 29.257143-25.6s3.657143 7.314286 7.314286 10.971428zM932.571429 179.2L658.285714 438.857143l-29.257143 29.257143c0-10.971429-3.657143-18.285714-10.971428-21.942857-3.657143-3.657143-7.314286-7.314286-10.971429-7.314286l29.257143-25.6 274.285714-259.657143 21.942858 25.6z" fill="" ></path><path d="M190.171429 449.828571h351.085714v36.571429H190.171429z" fill="" ></path><path d="M588.8 526.628571h36.571429v354.742858h-36.571429z" fill="" ></path></symbol><symbol id="icon-feibonaqihuiche" viewBox="0 0 1024 1024"><path d="M201.142857 804.571429c-7.314286-32.914286-36.571429-58.514286-73.142857-58.514286s-65.828571 25.6-69.485714 58.514286c0 3.657143-3.657143 10.971429-3.657143 14.628571 0 7.314286 0 14.628571 3.657143 21.942857 10.971429 29.257143 36.571429 51.2 69.485714 51.2 32.914286 0 62.171429-21.942857 69.485714-51.2 3.657143-7.314286 3.657143-14.628571 3.657143-21.942857V804.571429z m-73.142857 51.2c-14.628571 0-21.942857-7.314286-29.257143-14.628572-3.657143-7.314286-7.314286-14.628571-7.314286-21.942857 0-7.314286 0-10.971429 3.657143-14.628571 7.314286-14.628571 18.285714-21.942857 32.914286-21.942858s25.6 7.314286 32.914286 21.942858c3.657143 3.657143 3.657143 10.971429 3.657143 14.628571 0 7.314286-3.657143 14.628571-7.314286 21.942857-3.657143 10.971429-14.628571 14.628571-29.257143 14.628572z" fill="" ></path><path d="M654.628571 822.857143c0 7.314286-25.6 10.971429-21.942857 18.285714h-438.857143v-36.571428h424.228572c0 3.657143 36.571429 10.971429 36.571428 18.285714z" fill="" ></path><path d="M969.142857 804.571429v36.571428h-351.085714c3.657143-7.314286 7.314286-14.628571 7.314286-21.942857 0-7.314286 0-10.971429-3.657143-14.628571h347.428571zM822.857143 416.914286c0 7.314286 0 14.628571 3.657143 21.942857 10.971429 29.257143 36.571429 51.2 69.485714 51.2 32.914286 0 62.171429-21.942857 69.485714-51.2 3.657143-7.314286 3.657143-14.628571 3.657143-21.942857 0-3.657143 0-10.971429-3.657143-14.628572-7.314286-32.914286-36.571429-58.514286-69.485714-58.514285-36.571429 0-65.828571 25.6-73.142857 58.514285v14.628572z m40.228571 21.942857c-3.657143-7.314286-7.314286-14.628571-7.314285-21.942857 0-7.314286 0-10.971429 3.657142-14.628572 7.314286-14.628571 18.285714-21.942857 32.914286-21.942857s25.6 7.314286 32.914286 21.942857c3.657143 3.657143 3.657143 10.971429 3.657143 14.628572 0 7.314286-3.657143 14.628571-7.314286 21.942857-7.314286 7.314286-18.285714 14.628571-29.257143 14.628571-10.971429 0-21.942857-3.657143-29.257143-14.628571z" fill="" ></path><path d="M369.371429 420.571429c0 7.314286 25.6 10.971429 21.942857 18.285714h438.857143v-36.571429H405.942857c0 3.657143-36.571429 10.971429-36.571428 18.285715z" fill="" ></path><path d="M54.857143 402.285714v36.571429h351.085714c-3.657143-7.314286-7.314286-14.628571-7.314286-21.942857 0-7.314286 0-10.971429 3.657143-14.628572H54.857143z" fill="" ></path><path d="M599.771429 621.714286c0 7.314286-29.257143 10.971429-25.6 18.285714H54.857143v-36.571429h501.028571c0 3.657143 43.885714 10.971429 43.885715 18.285715z" fill="" ></path><path d="M969.142857 603.428571v36.571429H555.885714c3.657143-7.314286 7.314286-14.628571 7.314286-21.942857 0-7.314286 0-10.971429-3.657143-14.628572h409.6z" fill="" ></path><path d="M424.228571 219.428571c0 7.314286 29.257143 10.971429 25.6 18.285715h515.657143v-36.571429H468.114286c0 3.657143-43.885714 10.971429-43.885715 18.285714z" fill="" ></path><path d="M54.857143 201.142857v36.571429h413.257143c-3.657143-7.314286-7.314286-14.628571-7.314286-21.942857 0-7.314286 0-10.971429 3.657143-14.628572H54.857143z" fill="" ></path></symbol><symbol id="icon-feibonaqiqixing" viewBox="0 0 1024 1024"><path d="M219.428571 753.371429h-14.628571c-7.314286 0-14.628571 0-21.942857 3.657142-7.314286 0-10.971429 3.657143-18.285714 7.314286-10.971429 7.314286-18.285714 14.628571-25.6 25.6-3.657143 10.971429-7.314286 21.942857-7.314286 36.571429 0 32.914286 21.942857 62.171429 51.2 69.485714 7.314286 3.657143 14.628571 3.657143 21.942857 3.657143 3.657143 0 10.971429 0 14.628571-3.657143 10.971429-3.657143 18.285714-7.314286 29.257143-14.628571 7.314286-3.657143 18.285714-14.628571 21.942857-25.6 3.657143-7.314286 7.314286-18.285714 7.314286-29.257143 0-36.571429-25.6-65.828571-58.514286-73.142857z m18.285715 80.457142c-3.657143 10.971429-10.971429 18.285714-18.285715 25.6 0 0-3.657143 0-7.314285 3.657143h-10.971429c-7.314286 0-14.628571-3.657143-21.942857-7.314285-7.314286-7.314286-14.628571-18.285714-14.628571-29.257143v-3.657143c0-10.971429 7.314286-18.285714 14.628571-25.6 3.657143 0 3.657143-3.657143 7.314286-3.657143s7.314286-3.657143 14.628571-3.657143 10.971429 0 14.628572 3.657143c14.628571 7.314286 21.942857 18.285714 21.942857 32.914286 3.657143 3.657143 3.657143 3.657143 0 7.314285z" fill="" ></path><path d="M263.314286 808.228571h508.342857v36.571429H263.314286zM186.514286 256h36.571428v504.685714h-36.571428z" fill="" ></path><path d="M826.514286 753.371429h-14.628572c-7.314286 0-14.628571 0-21.942857 3.657142-7.314286 0-10.971429 3.657143-18.285714 7.314286-10.971429 7.314286-18.285714 14.628571-25.6 25.6-3.657143 10.971429-7.314286 21.942857-7.314286 36.571429 0 32.914286 21.942857 62.171429 51.2 69.485714 7.314286 3.657143 14.628571 3.657143 21.942857 3.657143 3.657143 0 10.971429 0 14.628572-3.657143 10.971429-3.657143 18.285714-7.314286 29.257143-14.628571 10.971429-7.314286 18.285714-18.285714 21.942857-29.257143 3.657143-7.314286 7.314286-18.285714 7.314285-29.257143 0-32.914286-25.6-62.171429-58.514285-69.485714z m18.285714 80.457142c-3.657143 10.971429-10.971429 18.285714-18.285714 25.6 0 0-3.657143 0-7.314286 3.657143h-10.971429c-7.314286 0-14.628571-3.657143-21.942857-7.314285-7.314286-7.314286-14.628571-18.285714-14.628571-29.257143v-3.657143c0-10.971429 7.314286-18.285714 14.628571-25.6 3.657143 0 3.657143-3.657143 7.314286-3.657143s7.314286-3.657143 14.628571-3.657143 10.971429 0 14.628572 3.657143c14.628571 7.314286 21.942857 18.285714 21.942857 32.914286 3.657143 3.657143 3.657143 3.657143 0 7.314285zM219.428571 146.285714h-14.628571c-7.314286 0-14.628571 0-21.942857 3.657143-7.314286 0-10.971429 3.657143-18.285714 7.314286-10.971429 7.314286-18.285714 14.628571-25.6 25.6-3.657143 10.971429-7.314286 25.6-7.314286 36.571428 0 32.914286 21.942857 62.171429 51.2 69.485715 7.314286 3.657143 14.628571 3.657143 21.942857 3.657143 3.657143 0 10.971429 0 14.628571-3.657143 10.971429-3.657143 18.285714-7.314286 29.257143-14.628572 7.314286-3.657143 18.285714-14.628571 21.942857-25.6 3.657143-10.971429 7.314286-18.285714 7.314286-29.257143 0-36.571429-25.6-65.828571-58.514286-73.142857z m18.285715 80.457143c0 10.971429-7.314286 21.942857-18.285715 25.6 0 0-3.657143 0-7.314285 3.657143h-7.314286c-7.314286 0-14.628571-3.657143-21.942857-7.314286-7.314286-7.314286-14.628571-18.285714-14.628572-29.257143v-3.657142c0-10.971429 7.314286-18.285714 14.628572-25.6 3.657143 0 3.657143-3.657143 7.314286-3.657143 3.657143-3.657143 7.314286-3.657143 14.628571-3.657143 3.657143 0 10.971429 0 14.628571 3.657143 14.628571 7.314286 21.942857 18.285714 21.942858 32.914285 0 3.657143 0 7.314286-3.657143 7.314286zM416.914286 830.171429l-36.571429-7.314286c7.314286-58.514286-3.657143-106.057143-32.914286-142.628572-10.971429-14.628571-25.6-25.6-36.571428-32.914285-25.6-18.285714-58.514286-29.257143-98.742857-36.571429l3.657143-36.571428c3.657143 0 58.514286 3.657143 113.371428 40.228571 25.6 14.628571 43.885714 32.914286 58.514286 58.514286 47.542857 73.142857 29.257143 153.6 29.257143 157.257143z" fill="" ></path><path d="M522.971429 837.485714l-36.571429-7.314285c10.971429-102.4-7.314286-186.514286-58.514286-248.685715-21.942857-25.6-43.885714-43.885714-69.485714-62.171428-43.885714-25.6-102.4-43.885714-168.228571-54.857143l3.657142-36.571429c3.657143 0 102.4 7.314286 190.171429 65.828572 40.228571 25.6 69.485714 54.857143 95.085714 91.428571 76.8 117.028571 47.542857 248.685714 43.885715 252.342857z" fill="" ></path><path d="M629.028571 837.485714l-36.571428-7.314285c14.628571-135.314286-10.971429-245.028571-80.457143-329.142858-29.257143-32.914286-58.514286-58.514286-91.428571-80.457142-58.514286-36.571429-131.657143-62.171429-219.428572-76.8l3.657143-36.571429c7.314286 0 131.657143 10.971429 245.028571 87.771429 47.542857 32.914286 87.771429 69.485714 120.685715 117.028571 98.742857 149.942857 62.171429 321.828571 58.514285 325.485714z" fill="" ></path></symbol><symbol id="icon-feibonaqizhouqixian" viewBox="0 0 1024 1024"><path d="M52.244898 975.245061v-919.510204h83.591837v919.510204H52.244898zM198.530612 975.245061v-919.510204h83.591837v919.510204H198.530612zM344.816327 975.245061v-919.510204h83.591836v919.510204h-83.591836zM553.795918 975.245061v-919.510204h83.591837v919.510204h-83.591837zM888.163265 975.245061v-919.510204h83.591837v919.510204h-83.591837z" ></path></symbol><symbol id="icon-jiangenjiaoduxian" viewBox="0 0 1024 1024"><path d="M658.285714 438.857143c-3.657143-10.971429-14.628571-21.942857-25.6-29.257143-3.657143 0-3.657143-3.657143-7.314285-3.657143-10.971429-7.314286-21.942857-7.314286-32.914286-7.314286-40.228571 0-73.142857 32.914286-73.142857 73.142858 0 14.628571 3.657143 25.6 10.971428 36.571428 7.314286 10.971429 14.628571 18.285714 25.6 25.6h3.657143c10.971429 7.314286 21.942857 7.314286 32.914286 7.314286 10.971429 0 18.285714-3.657143 29.257143-7.314286 3.657143 0 10.971429-3.657143 14.628571-7.314286 10.971429-7.314286 18.285714-18.285714 21.942857-29.257142 3.657143-10.971429 7.314286-18.285714 7.314286-29.257143 0-10.971429-3.657143-21.942857-7.314286-29.257143z m-54.857143 65.828571H585.142857c-7.314286 0-10.971429-3.657143-18.285714-7.314285-3.657143-3.657143-7.314286-10.971429-10.971429-14.628572v-10.971428c0-18.285714 10.971429-29.257143 25.6-36.571429h10.971429c3.657143 0 10.971429 0 14.628571 3.657143 3.657143 0 10.971429 3.657143 10.971429 7.314286 7.314286 3.657143 10.971429 10.971429 10.971428 21.942857v3.657143c0 14.628571-10.971429 29.257143-25.6 32.914285zM226.742857 863.085714c-3.657143-29.257143-21.942857-51.2-47.542857-62.171428-7.314286-3.657143-14.628571-3.657143-25.6-3.657143h-10.971429c-36.571429 7.314286-62.171429 36.571429-62.171428 73.142857 0 40.228571 32.914286 73.142857 73.142857 73.142857 29.257143 0 54.857143-18.285714 65.828571-43.885714 3.657143-10.971429 7.314286-18.285714 7.314286-29.257143v-7.314286z m-73.142857 43.885715c-21.942857 0-36.571429-18.285714-36.571429-36.571429 0-21.942857 18.285714-36.571429 36.571429-36.571429s36.571429 14.628571 36.571429 36.571429-18.285714 36.571429-36.571429 36.571429z" fill="" ></path><path d="M735.085714 881.371429c0 7.314286-14.628571 10.971429-10.971428 18.285714H201.142857v-36.571429h522.971429c-3.657143 3.657143 10.971429 10.971429 10.971428 18.285715z" fill="" ></path><path d="M943.542857 863.085714v36.571429h-237.714286c3.657143-3.657143 3.657143-10.971429 3.657143-18.285714s0-10.971429-3.657143-18.285715h237.714286zM263.314286 405.942857h10.971428l-25.6 109.714286-69.485714 285.257143-3.657143 10.971428-36.571428-7.314285v-3.657143L208.457143 512l25.6-109.714286c10.971429 0 18.285714 3.657143 29.257143 3.657143z" fill="" ></path><path d="M351.085714 84.114286l-69.485714 296.228571-7.314286 36.571429c-7.314286-7.314286-14.628571-10.971429-25.6-10.971429h-10.971428l10.971428-36.571428L314.514286 73.142857l36.571428 10.971429zM164.754286 813.970286l363.593143-684.763429 32.329142 17.188572-363.629714 684.726857z" fill="" ></path><path d="M197.558857 840.411429l717.714286-216.758858 10.605714 34.998858L208.091429 875.410286z" fill="" ></path><path d="M566.857143 497.371429c3.657143 3.657143 10.971429 7.314286 18.285714 7.314285l-29.257143 29.257143-343.771428 325.485714-25.6-25.6 343.771428-321.828571 29.257143-25.6s3.657143 7.314286 7.314286 10.971429zM932.571429 175.542857L658.285714 438.857143l-29.257143 29.257143c0-10.971429-3.657143-18.285714-10.971428-21.942857-3.657143-3.657143-7.314286-7.314286-10.971429-7.314286l29.257143-25.6 274.285714-259.657143 21.942858 21.942857z" fill="" ></path></symbol><symbol id="icon-GoldenSection" viewBox="0 0 1024 1024"><path d="M960.5 170.7v55.1h-897v-55.1h897z m0 156.9v55.1H510.8v-55.1h449.7z m0 156.9v55.1H510.8v-55.1h449.7zM334.3 263.7c43 0 79.8 10.2 94.1 14.7-1 16.8-4.1 48.3-5.6 84.9l-17.4 1.5c-4.1-62.5-37.8-80.3-83.9-80.3-83.4 0-147.8 79.8-147.8 179.4 0 78.8 38.9 131.1 104.3 131.1 24.5 0 43-7.1 48.6-35.6l8.7-45.2c7.2-38.6 3.6-40.7-48.1-45.7l4.1-15.8H436l-4.1 15.8c-28.6 4.1-31.7 6.6-38.9 45.7l-7.7 41.7c-3.1 15.2-4.1 29-2.6 39.1-31.7 8.1-71.1 19.8-113.5 19.8-96.7 0-162.6-52.9-162.6-148.4 0.1-120.8 95.3-202.7 227.7-202.7z m626.2 377.6v55.1h-897v-55.1h897z m0 156.9v55.1h-897v-55.1h897z" ></path></symbol><symbol id="icon-PercentageLine" viewBox="0 0 1024 1024"><path d="M960.5 170.7v55.2h-897v-55.2h897z m0 156.8v55.2H510.7v-55.2h449.8z m-764.2-24.7v104.6H91.1V302.8h105.2z m764.2 181.6v55.2H510.7v-55.2h449.8z m-501.1-24.7v104.6H354.2V459.7h105.2zM367.1 290l38.9 39.1-19.6 19.4-223.2 221.9-19.6 19.4-38.9-39.1 19.6-19.4 223.2-221.9 19.6-19.4z m593.4 351.3v55.2h-897v-55.2h897z m0 156.9v55.2h-897v-55.2h897z" ></path></symbol><symbol id="icon-a-xiangpicachuxiangpica" viewBox="0 0 1024 1024"><path d="M554.3 850.7L981 424c12.5-12.5 12.5-32.8 0-45.3L636.7 34.6c-12.5-12.5-32.8-12.5-45.3 0L90.5 535.5c-50 50-50 131 0 181l272.1 270.3c24 23.8 56.4 37.2 90.2 37.2H864c17.7 0 32-14.3 32-32s-14.3-32-32-32H599.5c-57 0-85.6-68.9-45.2-109.3z m71.1-736.9l276.4 276.4c6.2 6.2 6.2 16.4 0 22.6L607.9 706.6l-299-299 293.8-293.9c6.3-6.2 16.4-6.2 22.7 0.1zM135.8 580.7l127.9-127.9 299 299-127.9 127.9c-25 25-65.5 25-90.5 0L135.8 671.3c-25-25-25-65.6 0-90.6z" fill="#8A8A8A" ></path></symbol><symbol id="icon-jiagefanwei" viewBox="0 0 1024 1024"><path d="M576 629.312h138.688l-160 213.376-160-213.376H512V192h64v437.312zM832 896v-64h192v192h-192v-64H0v-64h832zM192 128v64H0V0h192v64h832v64H192zM64 64v64h64V64H64z m832 832v64h64v-64h-64z m-373.312-202.688l32 42.688 32-42.688h-64z" fill="#767D87" ></path></symbol><symbol id="icon-shijianfanwei" viewBox="0 0 1024 1024"><path d="M614.4 512V409.6l170.65 128-170.65 128V563.2H256V512h358.4z m256 256h51.2v153.6H768V768h51.2V102.4h51.2V768zM153.6 256h-51.2V102.4H256V256h-51.2v665.6h-51.2V256z m0-102.4v51.2h51.2v-51.2h-51.2z m665.6 665.6v51.2h51.2v-51.2h-51.2zM665.6 512v51.2l34.15-25.6L665.6 512z" fill="#767D87" ></path></symbol><symbol id="icon-buxiangjiaojiao" viewBox="0 0 1024 1024"><path d="M84.114286 512c-36.571429-14.628571-58.514286-54.857143-43.885715-95.085714s54.857143-58.514286 95.085715-43.885715c36.571429 14.628571 58.514286 54.857143 43.885714 95.085715S120.685714 526.628571 84.114286 512z m36.571428-102.4c-18.285714-7.314286-40.228571 0-47.542857 21.942857-7.314286 18.285714 0 40.228571 21.942857 47.542857 18.285714 7.314286 40.228571 0 47.542857-21.942857 7.314286-21.942857-3.657143-40.228571-21.942857-47.542857z" fill="" ></path><path d="M153.6 394.971429l625.371429-277.942858 14.628571 32.914286-625.371429 277.942857z" fill="" ></path><path d="M815.542857 168.228571c-36.571429-14.628571-58.514286-54.857143-43.885714-95.085714 14.628571-36.571429 54.857143-58.514286 95.085714-43.885714s58.514286 54.857143 43.885714 95.085714-54.857143 58.514286-95.085714 43.885714z m40.228572-102.4c-18.285714-7.314286-40.228571 0-47.542858 21.942858-7.314286 18.285714 0 40.228571 21.942858 47.542857 18.285714 7.314286 40.228571 0 47.542857-21.942857s-3.657143-40.228571-21.942857-47.542858zM190.171429 614.4c18.285714 36.571429 7.314286 80.457143-29.257143 98.742857s-80.457143 7.314286-98.742857-29.257143-7.314286-80.457143 29.257142-98.742857c32.914286-18.285714 80.457143-3.657143 98.742858 29.257143z m-32.914286 18.285714c-10.971429-18.285714-32.914286-21.942857-51.2-14.628571-18.285714 10.971429-21.942857 32.914286-14.628572 51.2 10.971429 18.285714 32.914286 21.942857 51.2 14.628571s25.6-32.914286 14.628572-51.2z" fill="" ></path><path d="M186.514286 658.285714l658.285714 190.171429-10.971429 36.571428L179.2 694.857143z" fill="" ></path><path d="M961.828571 859.428571c18.285714 36.571429 7.314286 80.457143-29.257142 98.742858s-80.457143 7.314286-98.742858-29.257143-7.314286-80.457143 29.257143-98.742857c36.571429-21.942857 80.457143-7.314286 98.742857 29.257142z m-29.257142 14.628572c-10.971429-18.285714-32.914286-21.942857-51.2-14.628572-18.285714 10.971429-21.942857 32.914286-14.628572 51.2 10.971429 18.285714 32.914286 21.942857 51.2 14.628572 14.628571-10.971429 21.942857-29.257143 14.628572-51.2z" fill="" ></path></symbol><symbol id="icon-tubiao_buxiangjiaotongdao" viewBox="0 0 1024 1024"><path d="M192 473.6c8.533333 0 21.333333 0 29.866667-4.266667 51.2-12.8 81.066667-55.466667 85.333333-106.666666h21.333333l371.2-98.133334c4.266667 0 12.8-4.266667 17.066667-8.533333 8.533333 12.8 21.333333 25.6 38.4 34.133333 17.066667 8.533333 38.4 17.066667 59.733333 17.066667 8.533333 0 21.333333 0 29.866667-4.266667 64-17.066667 98.133333-81.066667 81.066667-145.066666s-81.066667-98.133333-145.066667-81.066667c-29.866667 8.533333-55.466667 25.6-72.533333 55.466667-8.533333 17.066667-12.8 34.133333-17.066667 51.2h-17.066667L302.933333 281.6c-4.266667 0-12.8 4.266667-17.066666 8.533333-25.6-38.4-76.8-59.733333-128-46.933333-59.733333 17.066667-98.133333 81.066667-81.066667 140.8 12.8 55.466667 59.733333 89.6 115.2 89.6z m571.733333-311.466667c8.533333-12.8 17.066667-21.333333 34.133334-25.6 29.866667-8.533333 59.733333 8.533333 64 38.4s-8.533333 59.733333-38.4 64c-12.8 4.266667-29.866667 0-38.4-4.266666-12.8-8.533333-21.333333-17.066667-25.6-34.133334-8.533333-8.533333-4.266667-25.6 4.266666-38.4zM174.933333 302.933333c29.866667-8.533333 59.733333 8.533333 68.266667 38.4 8.533333 29.866667-8.533333 59.733333-38.4 64-29.866667 8.533333-59.733333-8.533333-68.266667-34.133333-4.266667-29.866667 12.8-59.733333 38.4-68.266667zM840.533333 755.2c-29.866667-8.533333-64-4.266667-89.6 12.8-17.066667 8.533333-29.866667 21.333333-38.4 34.133333-4.266667-4.266667-8.533333-8.533333-17.066666-8.533333l-371.2-98.133333h-17.066667c-4.266667-46.933333-38.4-89.6-85.333333-106.666667-64-17.066667-128 21.333333-145.066667 81.066667-8.533333 29.866667-4.266667 64 12.8 89.6 17.066667 25.6 42.666667 46.933333 72.533333 55.466666 8.533333 4.266667 21.333333 4.266667 29.866667 4.266667 21.333333 0 38.4-4.266667 59.733333-17.066667 17.066667-8.533333 29.866667-21.333333 38.4-34.133333 4.266667 4.266667 8.533333 8.533333 17.066667 8.533333l371.2 98.133334h21.333333c0 17.066667 4.266667 34.133333 17.066667 51.2 17.066667 25.6 42.666667 46.933333 72.533333 55.466666 8.533333 4.266667 21.333333 4.266667 29.866667 4.266667 51.2 0 98.133333-34.133333 115.2-85.333333 8.533333-29.866667 4.266667-64-12.8-89.6-25.6-29.866667-51.2-46.933333-81.066667-55.466667z m-597.333333-38.4c-4.266667 12.8-12.8 25.6-25.6 34.133333-12.8 8.533333-25.6 8.533333-38.4 4.266667-12.8-4.266667-25.6-12.8-34.133333-25.6-8.533333-12.8-8.533333-25.6-4.266667-38.4 4.266667-25.6 29.866667-38.4 51.2-38.4h12.8c25.6 4.266667 42.666667 34.133333 38.4 64z m614.4 166.4c-8.533333 29.866667-38.4 46.933333-64 38.4-12.8-4.266667-25.6-12.8-34.133333-25.6-8.533333-12.8-8.533333-25.6-4.266667-38.4 4.266667-12.8 12.8-25.6 25.6-34.133333 8.533333-4.266667 17.066667-8.533333 25.6-8.533334h12.8c12.8 4.266667 25.6 12.8 34.133333 25.6s8.533333 25.6 4.266667 42.666667z" ></path></symbol><symbol id="icon-drawicon_1" viewBox="0 0 1024 1024"><path d="M510.981095 4.075622L91.19204 508.943284h261.349254V1024h310.256716V508.943284h268.991045z" fill="#FF1F14" ></path></symbol><symbol id="icon-drawicon_2" viewBox="0 0 1024 1024"><path d="M512 1024l419.789055-504.867662h-261.349254V4.075622H360.183085v515.056716H91.19204z" fill="#03F838" ></path></symbol><symbol id="icon-tooltiptext" viewBox="0 0 1024 1024"><path d="M170.666667 85.333333 853.333333 85.333333C900.266667 85.333333 938.666667 123.733333 938.666667 170.666667L938.666667 682.666667C938.666667 729.6 900.266667 768 853.333333 768L682.666667 768 512 938.666667 341.333333 768 170.666667 768C123.733333 768 85.333333 729.6 85.333333 682.666667L85.333333 170.666667C85.333333 123.733333 123.733333 85.333333 170.666667 85.333333M213.333333 213.333333 213.333333 298.666667 810.666667 298.666667 810.666667 213.333333 213.333333 213.333333M213.333333 384 213.333333 469.333333 640 469.333333 640 384 213.333333 384M213.333333 554.666667 213.333333 640 725.333333 640 725.333333 554.666667 213.333333 554.666667Z" ></path></symbol><symbol id="icon-Tooltip" viewBox="0 0 1102 1024"><path d="M0 109.714286a73.142857 73.142857 0 0 1 73.142857-73.142857h841.142857a73.142857 73.142857 0 0 1 73.142857 73.142857V658.285714a73.142857 73.142857 0 0 1-73.142857 73.142857h-658.285714a73.142857 73.142857 0 0 0-58.514286 29.257143L0 1024V109.714286z m914.285714 0H73.142857V804.571429l65.828572-87.771429A146.285714 146.285714 0 0 1 256 658.285714h658.285714V109.714286z" ></path></symbol><symbol id="icon-fangkuai" viewBox="0 0 1024 1024"><path d="M65.166185 65.144696l893.016807 0 0 893.016807-893.016807 0 0-893.016807Z" fill="#f1f1f1" ></path></symbol><symbol id="icon-draw_quadrangle" viewBox="0 0 1024 1024"><path d="M353.7 378.4h-47.1L93 651.8h47.1z" fill="#748696" ></path><path d="M913.1 341.3H335.6l-29 37.1h624.6l29-37.1z" fill="#748696" ></path><path d="M884.1 378.4L670.6 651.8H93l-29 37.1h624.6l27-34.6 215.6-275.9z" fill="#748696" ></path></symbol><symbol id="icon-arrow" viewBox="0 0 1024 1024"><path d="M570.3 939.6c-11.7 0-23-6.5-28.6-17.7l-95.2-190.1-137 102.7c-9.7 7.3-22.6 8.4-33.5 3-10.8-5.4-17.7-16.4-17.7-28.5l-2.7-672.9c-0.1-12.7 7.4-24.2 19-29.4 11.6-5.2 25.1-3 34.5 5.5l496.4 449.2c9 8.1 12.6 20.6 9.4 32.2-3.2 11.7-12.7 20.5-24.6 22.9l-165.5 33.1L717.2 834c3.8 7.6 4.4 16.4 1.8 24.4-2.7 8.1-8.5 14.7-16 18.5l-118.3 59.2c-4.7 2.5-9.6 3.5-14.4 3.5zM457.8 651.3c2.4 0 4.9 0.3 7.3 0.9 9.2 2.2 17 8.3 21.3 16.8l98.1 195.8 61.1-30.6-96.8-193.3c-4.5-8.9-4.5-19.4-0.1-28.4s12.7-15.4 22.5-17.3l144.3-28.9-395.6-357.9 2.1 536.7 116.6-87.4c5.6-4.2 12.4-6.4 19.2-6.4z" fill="#231815" ></path></symbol><symbol id="icon-draw_arc" viewBox="0 0 1024 1024"><path d="M 186 63.9 c -66.8 0 -121 54.2 -121 121 s 54.2 121 121 121 s 121 -54.2 121 -121 s -54.1 -121 -121 -121 Z m -0.1 203.5 c -45.7 0 -82.7 -37 -82.7 -82.7 s 37 -82.7 82.7 -82.7 s 82.7 37 82.7 82.7 c 0.1 45.7 -37 82.7 -82.7 82.7 Z M 839.6 717.1 c -66.8 0 -121 54.2 -121 121 s 54.2 121 121 121 s 121 -54.2 121 -121 s -54.1 -121 -121 -121 Z m -0.1 203.6 c -45.7 0 -82.7 -37 -82.7 -82.7 s 37 -82.7 82.7 -82.7 s 82.7 37 82.7 82.7 c 0.1 45.6 -37 82.7 -82.7 82.7 Z M 698.9 197.5 c -66.8 0 -121 54.2 -121 121 s 54.2 121 121 121 s 121 -54.2 121 -121 s -54.2 -121 -121 -121 Z m -0.1 203.6 c -45.7 0 -82.7 -37 -82.7 -82.7 s 37 -82.7 82.7 -82.7 s 82.7 37 82.7 82.7 s -37 82.7 -82.7 82.7 Z" fill="#748696" ></path><path d="M 364.3 164.8 c -21.6 0 -43 1.4 -63.9 4.1 c -4.1 0.5 -7.2 4 -7.2 8.2 v 21.7 c 0 5 4.5 8.9 9.4 8.2 c 20.8 -2.9 42 -4.4 63.5 -4.4 c 91.6 0 177 26.8 248.7 72.9 c 5.5 3.6 12.8 -0.4 12.8 -6.9 v -23.8 c 0 -2.9 -1.5 -5.6 -3.9 -7 c -75.5 -46.3 -164.3 -73 -259.4 -73 Z M 772.2 377.7 v 20.9 h -29.4 c 52.5 74.8 83.3 165.8 83.3 264.1 c 0 26.5 -2.3 52.5 -6.6 77.8 h 35.7 c 4.1 -25.6 6.2 -51.8 6.2 -78.5 c 0.2 -105.7 -32.9 -203.7 -89.2 -284.3 Z" fill="#748696" ></path></symbol><symbol id="icon-draw_line" viewBox="0 0 1024 1024"><path d="M236.1 757.3l533.6-524 25.9 26.6-533.7 524z" fill="#748696" ></path><path d="M837.2 66.4c-66.8 0-121 54.2-121 121s54.2 121 121 121 121-54.2 121-121-54.2-121-121-121z m-0.1 203.5c-45.7 0-82.7-37-82.7-82.7s37-82.7 82.7-82.7 82.7 37 82.7 82.7-37 82.7-82.7 82.7zM185 717.3c-66.8 0-121 54.2-121 121s54.2 121 121 121 121-54.2 121-121-54.2-121-121-121z m-0.1 203.6c-45.7 0-82.7-37-82.7-82.7s37-82.7 82.7-82.7 82.7 37 82.7 82.7-37 82.7-82.7 82.7z" fill="#748696" ></path></symbol><symbol id="icon-draw_rays" viewBox="0 0 1024 1024"><path d="M238.6 760.3l408.2-399.7 26.2 26.3-408.2 399.7z" fill="#748696" ></path><path d="M717.2 186.4c-66.8 0-121 54.2-121 121s54.2 121 121 121 121-54.2 121-121-54.2-121-121-121z m-0.1 203.5c-45.7 0-82.7-37-82.7-82.7s37-82.7 82.7-82.7 82.7 37 82.7 82.7-37 82.7-82.7 82.7zM185 717.3c-66.8 0-121 54.2-121 121s54.2 121 121 121 121-54.2 121-121-54.2-121-121-121z m-0.1 203.6c-45.7 0-82.7-37-82.7-82.7s37-82.7 82.7-82.7 82.7 37 82.7 82.7-37 82.7-82.7 82.7z" fill="#748696" ></path><path d="M800.8 253.5l158.5-151.6-25.9-26.6L774 228.1c10.2 7 19.2 15.6 26.8 25.4z" fill="#748696" ></path></symbol><symbol id="icon-rectangle" viewBox="0 0 1024 1024"><path d="M 273.9 168.3 H 739 v 37.1 H 273.9 Z M 273.9 819.6 H 739 v 37.1 H 273.9 Z M 165.812 740.898 v -465.1 h 37.1 v 465.1 Z M 821.11 740.896 v -465.1 h 37.1 v 465.1 Z" fill="#748696" ></path><path d="M 184.7 66.2 c -66.8 0 -121 54.2 -121 121 s 54.2 121 121 121 s 121 -54.2 121 -121 s -54.1 -121 -121 -121 Z m -0.1 203.5 c -45.7 0 -82.7 -37 -82.7 -82.7 s 37 -82.7 82.7 -82.7 s 82.7 37 82.7 82.7 c 0.1 45.7 -37 82.7 -82.7 82.7 Z M 184.7 717.5 c -66.8 0 -121 54.2 -121 121 s 54.2 121 121 121 s 121 -54.2 121 -121 s -54.1 -121 -121 -121 Z m -0.1 203.6 c -45.7 0 -82.7 -37 -82.7 -82.7 s 37 -82.7 82.7 -82.7 s 82.7 37 82.7 82.7 c 0.1 45.6 -37 82.7 -82.7 82.7 Z M 840 717.5 c -66.8 0 -121 54.2 -121 121 s 54.2 121 121 121 s 121 -54.2 121 -121 s -54.1 -121 -121 -121 Z m -0.1 203.6 c -45.7 0 -82.7 -37 -82.7 -82.7 s 37 -82.7 82.7 -82.7 s 82.7 37 82.7 82.7 c 0.1 45.6 -37 82.7 -82.7 82.7 Z M 840 66.2 c -66.8 0 -121 54.2 -121 121 s 54.2 121 121 121 s 121 -54.2 121 -121 s -54.1 -121 -121 -121 Z m -0.1 203.5 c -45.7 0 -82.7 -37 -82.7 -82.7 s 37 -82.7 82.7 -82.7 s 82.7 37 82.7 82.7 c 0.1 45.7 -37 82.7 -82.7 82.7 Z" fill="#748696" ></path></symbol><symbol id="icon-draw_parallel_lines" viewBox="0 0 1024 1024"><path d="M 242.242 556.785 l 333.663 -324.036 l 25.847 26.616 L 268.09 583.4 Z" fill="#748696" ></path><path d="M 643.4 65.9 c -66.8 0 -121 54.2 -121 121 s 54.2 121 121 121 s 121 -54.2 121 -121 s -54.2 -121 -121 -121 Z m -0.1 203.5 c -45.7 0 -82.7 -37 -82.7 -82.7 s 37 -82.7 82.7 -82.7 s 82.7 37 82.7 82.7 s -37 82.7 -82.7 82.7 Z" fill="#748696" ></path><path d="M 801.1 593.9 L 959.3 442 l -25.9 -26.6 l -159.1 153.1 c 10.2 7 19.2 15.6 26.8 25.4 Z M 603.8 733.9 L 396.6 933.4 l 25.4 26.2 l 206.3 -198.2 c -9.5 -7.9 -17.7 -17.2 -24.5 -27.5 Z M 773.4 620.8 c 9.2 13.3 14.6 29.5 14.6 47 c 0 45.7 -37 82.7 -82.7 82.7 c -18.4 0 -35.4 -6 -49.1 -16.2 l -27.9 27 c 20.9 17.3 47.8 27.7 77.1 27.7 c 66.8 0 121 -54.2 121 -121 c 0 -27.9 -9.4 -53.6 -25.3 -74 l -27.7 26.8 Z M 622.5 667.8 c 0 -45.7 37 -82.7 82.7 -82.7 c 14.9 0 28.8 3.9 40.8 10.8 l 28.2 -27.4 c -19.6 -13.6 -43.3 -21.6 -69 -21.6 c -66.8 0 -121 54.2 -121 121 c 0 24.3 7.2 46.9 19.5 65.9 l 28.3 -27.5 c -6 -11.4 -9.5 -24.6 -9.5 -38.5 Z" fill="#748696" ></path><path d="M 773.4 620.8 l 27.8 -26.9 c -7.6 -9.8 -16.6 -18.4 -26.8 -25.4 l -28.2 27.4 c 10.8 6.1 20.1 14.7 27.2 24.9 Z M 632.1 706.4 l -28.3 27.5 c 6.7 10.3 15 19.6 24.5 27.4 l 27.9 -27 c -10 -7.3 -18.2 -16.9 -24.1 -27.9 Z M 185.2 522.8 c -66.8 0 -121 54.2 -121 121 s 54.2 121 121 121 s 121 -54.2 121 -121 s -54.2 -121 -121 -121 Z m -0.1 203.6 c -45.7 0 -82.7 -37 -82.7 -82.7 s 37 -82.7 82.7 -82.7 s 82.7 37 82.7 82.7 s -37 82.7 -82.7 82.7 Z" fill="#748696" ></path></symbol><symbol id="icon-setting" viewBox="0 0 1024 1024"><path d="M 810.342 334.848 c 16.384 29.184 45.824 46.592 78.592 46.592 c 27.392 0 49.818 22.938 49.818 51.302 v 158.67 c 0 28.16 -22.426 51.2 -49.818 51.2 c -32.87 0 -62.208 17.458 -78.592 46.694 a 94.72 94.72 0 0 0 0 93.286 a 52.07 52.07 0 0 1 -18.278 69.99 L 658.688 931.84 a 49.152 49.152 0 0 1 -67.994 -18.637 a 89.344 89.344 0 0 0 -78.592 -46.745 c -32.768 0 -62.208 17.408 -78.592 46.643 a 49.51 49.51 0 0 1 -43.264 25.6 a 48.589 48.589 0 0 1 -24.73 -6.861 l -133.58 -79.258 a 50.637 50.637 0 0 1 -23.245 -31.078 a 51.763 51.763 0 0 1 4.967 -38.912 a 94.72 94.72 0 0 0 0 -93.286 a 89.446 89.446 0 0 0 -78.592 -46.644 c -27.392 0 -49.818 -23.04 -49.818 -51.25 v -158.72 c 0 -28.16 22.426 -51.2 49.818 -51.2 c 32.768 0 62.208 -17.46 78.592 -46.695 a 94.72 94.72 0 0 0 0 -93.287 a 51.968 51.968 0 0 1 18.227 -69.939 l 133.53 -79.309 a 48.998 48.998 0 0 1 67.993 18.74 a 89.446 89.446 0 0 0 157.184 0 a 49.05 49.05 0 0 1 68.096 -18.842 l 133.376 79.36 c 23.808 14.131 32 45.517 18.278 69.99 a 94.72 94.72 0 0 0 0 93.287 Z M 512 750.899 A 239.258 239.258 0 0 0 750.95 512 A 239.411 239.411 0 0 0 512 273.05 A 239.36 239.36 0 0 0 273.05 512 A 239.36 239.36 0 0 0 512 750.95 Z" fill="#748696" ></path><path d="M 512 642.406 A 130.611 130.611 0 0 1 381.594 512 A 130.611 130.611 0 0 1 512 381.594 A 130.611 130.611 0 0 1 642.406 512 A 130.56 130.56 0 0 1 512 642.406" fill="#748696" ></path></symbol><symbol id="icon-recycle_bin" viewBox="0 0 1024 1024"><path d="M 609.522 769.748 c -17.717 0 -32.041 -14.324 -32.041 -32.04 v -352.46 c 0 -17.718 14.324 -32.042 32.041 -32.042 c 17.718 0 32.042 14.324 32.042 32.042 v 352.46 c 0 17.716 -14.324 32.04 -32.042 32.04 Z m -192.25 0 c -17.718 0 -32.042 -14.324 -32.041 -32.04 v -352.46 c 0 -17.718 14.323 -32.042 32.041 -32.042 s 32.042 14.324 32.042 32.042 v 352.46 c 0 17.716 -14.324 32.04 -32.042 32.04 Z m 512.669 -544.71 H 769.732 v -64.083 c 0 -52.996 -42.777 -96.125 -95.39 -96.125 H 353.187 c -52.997 0 -96.125 43.129 -96.125 96.125 v 64.084 H 96.853 c -17.717 0 -32.041 14.323 -32.041 32.041 c 0 17.718 14.324 32.042 32.042 32.042 h 833.085 c 17.717 0 32.042 -14.324 32.042 -32.042 c 0 -17.717 -14.322 -32.041 -32.04 -32.041 Z m -608.795 -64.083 c 0 -17.656 14.384 -32.041 32.042 -32.041 H 674.34 c 17.558 0 31.308 14.066 31.308 32.041 v 64.084 H 321.146 v -64.084 Z M 737.82 962 H 289.171 c -53 0 -96.125 -43.127 -96.125 -96.126 V 384.768 c 0 -17.689 14.353 -32.042 32.042 -32.042 c 17.685 0 32.041 14.353 32.041 32.042 v 481.106 c 0 17.687 14.387 32.043 32.042 32.043 h 448.65 c 17.682 0 32.04 -14.356 32.04 -32.043 V 386.081 c 0 -17.688 14.32 -32.042 32.043 -32.042 c 17.718 0 32.041 14.354 32.041 32.042 v 479.792 c 0 53.002 -43.132 96.127 -96.126 96.127 Z" fill="#748696" ></path></symbol><symbol id="icon-draw_trendline" viewBox="0 0 1024 1024"><path d="M714 177.3c-66.8 0-121 54.2-121 121s54.2 121 121 121 121-54.2 121-121-54.2-121-121-121z m-0.1 203.5c-45.7 0-82.7-37-82.7-82.7s37-82.7 82.7-82.7 82.7 37 82.7 82.7-37 82.7-82.7 82.7zM301.8 598.2c-66.8 0-121 54.2-121 121s54.2 121 121 121 121-54.2 121-121-54.2-121-121-121z m-0.1 203.6c-45.7 0-82.7-37-82.7-82.7s37-82.7 82.7-82.7 82.7 37 82.7 82.7-37 82.7-82.7 82.7z" fill="#748696" ></path><path d="M959.5 90.4L806.4 243.5l-26.2-26.2L933.3 64.2zM663.9 386.5L397.3 653.2 371 627l266.7-266.7zM246.3 803.7L90.4 959.6l-26.2-26.3 155.9-155.9z" fill="#748696" ></path></symbol><symbol id="icon-draw_goldensection" viewBox="0 0 1024 1024"><path d="M92.5 184.4h845.2v37.1H92.5zM93 802.4h845.2v37.1H93zM92.8 670.3H938v37.1H92.8zM370.1 578.5c-29.9 17-63.6 25.5-101.2 25.5-43.3 0-78.2-13.7-104.6-41.1-26.5-27.4-39.7-63.9-39.7-109.6 0-46.2 14.6-84.2 43.9-114 29.2-29.8 66.7-44.6 112.4-44.6 32.3 0 59.7 5.2 82.1 15.5v41.7c-24-15.1-52.5-22.6-85.6-22.6-32.6 0-59.4 11.1-80.6 33.4-21.1 22.3-31.7 51.7-31.7 88.1 0 37.5 9.7 66.7 29.2 87.5 19.4 20.9 45.7 31.3 78.8 31.3 22.8 0 42.2-4.4 58.2-13.1v-81h-64.9v-34.2h103.8v137.2z" fill="#748696" ></path></symbol><symbol id="icon-draw_gannfan" viewBox="0 0 1024 1024"><path d="M64 63.9h37.1v895.7H64z" fill="#748696" ></path><path d="M84.475 913.272l849.439-849.44 26.233 26.234-849.439 849.44z" fill="#748696" ></path><path d="M71.998 925.89L943.86 519.35l15.678 33.623-871.86 406.541z" fill="#748696" ></path><path d="M65.179 943.878l406.54-871.861 33.624 15.678-406.54 871.861z" fill="#748696" ></path><path d="M64 922.5h895.7v37.1H64z" fill="#748696" ></path></symbol><symbol id="icon-draw_percentage" viewBox="0 0 1024 1024"><path d="M92 184.4h845.2v37.1H92zM92 802.4h845.2v37.1H92zM92 670.3h845.2v37.1H92zM486.3 508.3h450v37.1h-450zM486.3 346.4h450v37.1h-450zM112.6 378.9c0-22.8 6.1-40.9 18.2-54.3 12.2-13.4 28.5-20.1 49.2-20.1 19.8 0 35.2 6.2 46.3 18.5 11.1 12.3 16.6 29.5 16.6 51.6 0 21.9-6.1 39.7-18.3 53.4-12.2 13.7-28.5 20.5-48.7 20.5-19.2 0-34.5-6.3-46-19.1-11.5-12.7-17.3-29.5-17.3-50.5z m27.7-1.8c0 15.5 3.4 27.4 10.1 35.8 6.7 8.4 15.9 12.6 27.5 12.6 12 0 21.2-4.3 27.8-13 6.5-8.7 9.8-20.9 9.8-36.8 0-15.5-3.2-27.4-9.6-35.9-6.4-8.4-15.4-12.7-27.1-12.7-11.9 0-21.2 4.4-28.1 13.2-6.9 8.9-10.4 21.1-10.4 36.8z m224-68.4L185.4 588.9h-30l178.8-280.2h30.1z m-84.9 213.1c0-22.8 6.1-40.9 18.2-54.5 12.2-13.6 28.5-20.4 49-20.4 19.7 0 35 6.2 46.2 18.6s16.7 29.9 16.7 52.4c0 21.8-6.2 39.5-18.5 53.1-12.3 13.6-28.5 20.4-48.3 20.4-19.3 0-34.7-6.4-46.1-19.3-11.4-12.9-17.2-29.7-17.2-50.3z m27.5-1.6c0 15.1 3.4 26.9 10.1 35.3 6.7 8.4 15.9 12.7 27.5 12.7 12 0 21.2-4.4 27.8-13.1 6.5-8.7 9.8-21 9.8-36.7 0-15.6-3.3-27.5-9.8-35.8-6.5-8.3-15.5-12.4-26.9-12.4-12.2 0-21.7 4.4-28.4 13.2-6.7 8.9-10.1 21.1-10.1 36.8z" fill="#748696" ></path></symbol><symbol id="icon-draw_waveband" viewBox="0 0 1024 1024"><path d="M92 184.4h845.2v37.1H92zM92 802.4h845.2v37.1H92zM92 670.3h845.2v37.1H92zM486.3 508.3h450v37.1h-450zM486.3 346.4h450v37.1h-450zM298.7 607.9h-97.5v-11.2h16.9c6.2 0 10.6-1.3 13.1-3.8s3.7-6.3 3.7-11.3V317.4c0-10-0.6-15.7-1.9-17-1.3-1.3-6.3-1.9-15-1.9-17.5 0-29.7 3.2-36.6 9.7-6.9 6.4-15.3 23.8-25.3 52.2l-11.2-1.9 16.9-71.2H340l15 71.2-9.4 1.9c-10-27.1-17.8-44.1-23.4-51.2-5.6-7.1-17.2-10.6-34.7-10.6-12.5 0-19.4 0.6-20.6 1.9-1.3 1.3-1.9 7.5-1.9 18.8v262.2c0 5 1.6 8.8 4.7 11.3s7.2 3.8 12.2 3.8h16.9v11.3z" fill="#748696" ></path></symbol><symbol id="icon-draw_resline" viewBox="0 0 1024 1024"><path d="M70.768 939.52l622.178-622.178 13.717 13.718L84.486 953.237z" fill="#748696" ></path><path d="M74.678 936.093l773.28-281.432 6.429 17.666L81.107 953.76z" fill="#748696" ></path><path d="M69.06 942.134l286.527-787.281 19.545 7.114-286.527 787.28z" fill="#748696" ></path><path d="M959.7 959.6H64l12-37.1h883.7z" fill="#748696" ></path></symbol><symbol id="icon-draw_text" viewBox="0 0 1024 1024"><path d="M647.5 959.3H375.2v-31.4h47.1c17.4 0 29.6-3.5 36.7-10.6 7-7 10.5-17.5 10.5-31.6V148c0-28.1-1.8-43.9-5.2-47.4-3.5-3.5-17.5-5.3-41.9-5.3-48.9 0-83 9-102.1 27-19.2 18-42.8 66.6-70.7 145.8l-31.4-5.2 47.1-199h497.5l41.9 199-26.2 5.2c-28-75.6-49.7-123.3-65.5-143.1-15.7-19.8-48-29.7-96.9-29.7-34.9 0-54.2 1.8-57.6 5.3-3.5 3.5-5.2 21-5.2 52.6v732.5c0 14.1 4.3 24.5 13.1 31.6 8.7 7 20 10.6 34 10.6h47.1v31.4z" fill="#748696" ></path></symbol><symbol id="icon-draw_parallelchannel" viewBox="0 0 1024 1024"><path d="M242.242 556.785l333.663-324.036 25.847 26.616L268.09 583.4z" fill="#748696" ></path><path d="M643.4 65.9c-66.8 0-121 54.2-121 121s54.2 121 121 121 121-54.2 121-121-54.2-121-121-121z m-0.1 203.5c-45.7 0-82.7-37-82.7-82.7s37-82.7 82.7-82.7 82.7 37 82.7 82.7-37 82.7-82.7 82.7z" fill="#748696" ></path><path d="M801.1 593.9L959.3 442l-25.9-26.6-159.1 153.1c10.2 7 19.2 15.6 26.8 25.4zM603.8 733.9L396.6 933.4l25.4 26.2 206.3-198.2c-9.5-7.9-17.7-17.2-24.5-27.5zM773.4 620.8c9.2 13.3 14.6 29.5 14.6 47 0 45.7-37 82.7-82.7 82.7-18.4 0-35.4-6-49.1-16.2l-27.9 27c20.9 17.3 47.8 27.7 77.1 27.7 66.8 0 121-54.2 121-121 0-27.9-9.4-53.6-25.3-74l-27.7 26.8zM622.5 667.8c0-45.7 37-82.7 82.7-82.7 14.9 0 28.8 3.9 40.8 10.8l28.2-27.4c-19.6-13.6-43.3-21.6-69-21.6-66.8 0-121 54.2-121 121 0 24.3 7.2 46.9 19.5 65.9l28.3-27.5c-6-11.4-9.5-24.6-9.5-38.5z" fill="#748696" ></path><path d="M773.4 620.8l27.8-26.9c-7.6-9.8-16.6-18.4-26.8-25.4l-28.2 27.4c10.8 6.1 20.1 14.7 27.2 24.9zM632.1 706.4l-28.3 27.5c6.7 10.3 15 19.6 24.5 27.4l27.9-27c-10-7.3-18.2-16.9-24.1-27.9zM185.2 522.8c-66.8 0-121 54.2-121 121s54.2 121 121 121 121-54.2 121-121-54.2-121-121-121z m-0.1 203.6c-45.7 0-82.7-37-82.7-82.7s37-82.7 82.7-82.7 82.7 37 82.7 82.7-37 82.7-82.7 82.7z" fill="#748696" ></path></symbol><symbol id="icon-draw_wavemw" viewBox="0 0 1024 1024"><path d="M507.5 269.2L307 826.9h-37.4L63.7 194.5H102l189.5 565.9c15.8-45.6 32-91.3 48.7-137.1 16.7-45.9 32.9-91.9 48.7-138L490 203.7h36.4l200.5 556.8c15.8-46.8 31.9-93.2 48.3-139.4s32.8-92.9 49.2-140.3L923 194.5h37.4l-216 632.4h-34.6L507.5 269.2z" fill="#748696" ></path></symbol><symbol id="icon-draw_triangle" viewBox="0 0 1024 1024"><path d="M185.8 63.9c-66.8 0-121 54.2-121 121s54.2 121 121 121 121-54.2 121-121-54.2-121-121-121z m-0.1 203.5c-45.7 0-82.7-37-82.7-82.7s37-82.7 82.7-82.7 82.7 37 82.7 82.7-37 82.7-82.7 82.7zM838.2 716.7c-66.8 0-121 54.2-121 121s54.2 121 121 121 121-54.2 121-121-54.2-121-121-121z m-0.1 203.5c-45.7 0-82.7-37-82.7-82.7s37-82.7 82.7-82.7 82.7 37 82.7 82.7-37 82.7-82.7 82.7zM186.2 715.6c-66.8 0-121 54.2-121 121s54.2 121 121 121 121-54.2 121-121-54.2-121-121-121z m-0.1 203.5c-45.7 0-82.7-37-82.7-82.7s37-82.7 82.7-82.7 82.7 37 82.7 82.7-37 82.7-82.7 82.7z" fill="#748696" ></path><path d="M287.2 818.1h447.6v37H287.2zM167.319 733.019v-451h37v451zM750.725 776.404L235.673 261.353l26.163-26.163L776.887 750.24z" fill="#748696" ></path></symbol><symbol id="icon-draw_pricechannel" viewBox="0 0 1024 1024"><path d="M189.9 191.4c-47.2 47.2-47.2 123.9 0 171.1s123.9 47.2 171.1 0 47.2-123.9 0-171.1-123.8-47.2-171.1 0z m143.9 144c-32.3 32.3-84.6 32.3-117 0s-32.3-84.6 0-117 84.6-32.3 117 0 32.3 84.7 0 117z" fill="#748696" ></path><path d="M336.266 190.085L462.484 63.867l26.162 26.163L362.43 216.248zM66.391 459.906L190.416 335.88l26.163 26.163L92.554 486.068zM636.5 214.9c-47.2 47.2-47.2 123.9 0 171.1 47.2 47.2 123.9 47.2 171.1 0 47.2-47.2 47.2-123.9 0-171.1-47.3-47.2-123.9-47.2-171.1 0z m143.8 144c-32.3 32.3-84.6 32.3-117 0-32.3-32.3-32.3-84.6 0-117 32.3-32.3 84.6-32.3 117 0s32.3 84.7 0 117zM222.5 630.6c-47.2 47.2-47.2 123.9 0 171.1 47.2 47.2 123.9 47.2 171.1 0 47.2-47.2 47.2-123.9 0-171.1s-123.8-47.3-171.1 0z m143.8 143.9c-32.3 32.3-84.6 32.3-117 0s-32.3-84.6 0-117c32.3-32.3 84.6-32.3 117 0 32.4 32.4 32.4 84.7 0 117z" fill="#748696" ></path><path d="M779.835 216.483l152.31-152.31 26.162 26.164-152.309 152.309zM242.663 805.981L90 958.644l-26.163-26.163L216.5 779.82zM658.982 389.674L388.658 659.998l-26.163-26.163L632.82 363.511zM527.694 931.128l404.178-404.179 26.163 26.163-404.179 404.179z" fill="#748696" ></path></symbol><symbol id="icon-draw_circle" viewBox="0 0 1024 1024"><path d="M532.138 469.26l274.426-274.426 26.163 26.163L558.3 495.423z" fill="#748696" ></path><path d="M697.4 65.9H325.5l-263 263v371.9l263 263h371.9l263-263V328.9l-263-263z m225.5 619.3l-241 241H341l-241-241V344.4l241-241h340.8l241 241v340.8z" fill="#748696" ></path><path d="M511.1 513.2m-121.2 0a121.2 121.2 0 1 0 242.4 0 121.2 121.2 0 1 0-242.4 0Z" fill="#748696" ></path></symbol><symbol id="icon-draw_symangle" viewBox="0 0 1024 1024"><path d="M485.845 771.49l448.302-448.3 26.163 26.162-448.302 448.302z" fill="#748696" ></path><path d="M512.217 797.631L64.764 350.178l26.163-26.162L538.38 771.469z" fill="#748696" ></path><path d="M494.6 226.1v535.7l17.5 35.9 20.7-20.6-1.2-16.1V226.1z" fill="#748696" ></path></symbol><symbol id="icon-draw_hline" viewBox="0 0 1024 1024"><path d="M512.6 390.1c-66.8 0-121 54.2-121 121s54.2 121 121 121 121-54.2 121-121-54.2-121-121-121z m-0.1 203.5c-45.7 0-82.7-37-82.7-82.7s37-82.7 82.7-82.7 82.7 37 82.7 82.7-37 82.7-82.7 82.7z" fill="#748696" ></path><path d="M606 492.6h353.4v37H606zM64.5 492.6h340.1v37H64.5z" fill="#748696" ></path></symbol><symbol id="icon-linear_1" viewBox="0 0 1024 1024"><path d="M804.11648 936.36608l3.54816-848.896 35.84 0.1536-3.54816 848.896z" fill="#748696" ></path><path d="M192.09216 444.73344l625.664-285.22496 14.86336 32.6144-625.664 285.21984zM192.1024 692.5312l625.65888-285.21984 14.86336 32.6144-625.664 285.21984z" fill="#748696" ></path><path d="M180.224 964.096l3.072-876.544h35.84l-2.56 821.248 601.088-273.408 14.848 32.768z" fill="#748696" ></path></symbol><symbol id="icon-linear_2" viewBox="0 0 1024 1024"><path d="M732.22144 923.04384l3.55328-848.896 35.84 0.14848-3.55328 848.896z" fill="#748696" ></path><path d="M120.36096 431.38048l625.664-285.21984 14.86848 32.60928-625.664 285.21984zM120.3712 679.18336l625.65888-285.22496 14.86336 32.6144-625.664 285.21984z" fill="#748696" ></path><path d="M108.544 951.296l2.56-877.056h35.84l-2.56 821.248 601.6-273.408 14.848 32.768z" fill="#748696" ></path><path d="M120.22784 431.1552l780.2368-358.39488 14.95552 32.56832L135.18848 463.7184zM120.22784 678.95296l780.2368-358.38976 14.95552 32.5632L135.18848 711.5264zM119.20384 907.07456l781.04064-357.83168 14.92992 32.58368-781.04064 357.83168z" fill="#748696" ></path></symbol><symbol id="icon-linear_3" viewBox="0 0 1024 1024"><path d="M832.52736 936.62208l3.55328-848.896 35.84 0.1536-3.55328 848.896z" fill="#748696" ></path><path d="M164.096 692.38784l683.19744-285.2608 13.80864 33.0752L177.90464 725.4528z" fill="#748696" ></path><path d="M152.064 936.38144l3.07712-848.896 35.84 0.13312-3.07712 848.896z" fill="#748696" ></path></symbol><symbol id="icon-ruler" viewBox="0 0 1024 1024"><path d="M178.176 316.928h35.84v151.552h-35.84zM390.144 316.928h35.84v151.552h-35.84zM284.16 316.928h35.84v151.552h-35.84zM601.6 316.928h35.84v151.552h-35.84zM495.616 316.928h35.84v151.552h-35.84zM707.584 316.928h35.84v151.552h-35.84zM813.056 316.928h35.84v151.552h-35.84z" fill="#748696" ></path><path d="M973.824 727.04H50.176V296.96h923.136v430.08z m-887.808-35.84h851.456V332.8H86.016v358.4z" fill="#748696" ></path></symbol><symbol id="icon-price_line" viewBox="0 0 1024 1024"><path d="M262.144 663.04c-8.192-38.912-43.008-68.608-84.48-68.608-47.616 0-86.528 38.912-86.528 86.528s38.912 86.528 86.528 86.528c41.472 0 76.288-29.184 84.48-68.608h658.432v-35.84H262.144z m-84.48 77.312c-32.768 0-58.88-26.624-58.88-58.88 0-32.768 26.624-58.88 58.88-58.88 26.624 0 48.64 17.408 56.32 40.96 1.536 5.632 2.56 11.776 2.56 17.92 0 6.144-1.024 12.288-2.56 17.92-7.68 23.552-29.696 40.96-56.32 40.96zM91.648 331.776v-37.888h7.68c24.064 0 41.472-5.12 53.248-15.872 9.728-8.704 14.336-19.456 14.336-31.744h44.544V522.24H157.184V331.776H91.648zM362.496 343.552H309.76c0-38.912 11.776-66.56 35.84-82.432 14.848-10.24 33.28-15.36 54.272-15.36 27.648 0 50.176 7.68 68.096 23.04s26.624 36.864 26.624 64c0 20.992-6.144 39.424-18.432 55.808-8.192 10.752-20.992 22.528-38.912 34.304-11.264 8.192-22.528 15.872-33.792 23.552-15.36 11.264-24.576 20.48-28.16 27.136h119.296v48.128H306.688c0-20.48 3.072-37.376 9.216-50.688 9.216-19.456 27.648-39.424 54.784-58.88 22.528-16.384 36.864-27.136 43.52-33.28 17.408-15.36 26.112-31.232 26.112-48.128 0-10.24-3.072-18.944-8.704-26.624-7.168-8.192-16.896-12.288-29.184-12.288-16.384 0-28.16 6.144-34.304 18.432-3.584 6.656-5.632 17.92-5.632 33.28zM626.688 400.896v-38.912h8.704c12.8 0 22.528-1.536 29.184-5.12 11.264-5.632 16.896-16.384 16.896-32.256 0-8.192-2.048-15.36-5.632-21.504-6.144-9.216-15.36-13.824-28.672-13.824-15.872 0-27.136 6.144-32.768 18.432-3.072 6.656-4.608 15.36-4.608 26.624h-50.688c0-27.136 7.168-48.128 22.016-63.488 15.872-16.384 38.912-25.088 69.12-25.088 22.528 0 40.96 5.632 56.32 16.384 19.456 13.824 29.184 33.792 29.184 60.416 0 12.8-3.584 24.576-10.24 34.304-5.632 8.192-13.312 14.336-22.528 18.432 13.312 5.12 23.552 12.8 30.72 24.064 7.168 11.264 10.752 24.576 10.752 40.96 0 26.112-8.704 47.616-26.112 64-17.408 16.384-39.936 25.088-68.096 25.088-23.04 0-41.984-4.608-57.344-13.824-25.6-14.848-38.4-40.96-38.4-78.336h53.248c-0.512 12.288 1.536 22.016 5.632 29.696 6.656 12.288 17.92 18.432 34.304 18.432 11.776 0 20.992-3.584 28.16-10.752 8.192-8.192 12.288-19.968 12.288-34.816 0-16.384-7.168-27.648-21.504-33.792-8.704-3.584-22.016-5.12-39.936-5.12z" fill="#748696" ></path></symbol><symbol id="icon-vertical_line" viewBox="0 0 1024 1024"><path d="M632.832 512c0-66.56-54.272-120.832-120.832-120.832S391.168 444.928 391.168 512 445.44 632.832 512 632.832s120.832-54.272 120.832-120.832z m-203.264-0.512c0-45.568 36.864-82.944 82.944-82.944s82.944 36.864 82.944 82.944-36.864 82.944-82.944 82.944-82.944-36.864-82.944-82.944z" fill="#748696" ></path><path d="M530.432 605.184v353.28h-36.864v-353.28h36.864z m0-541.696v339.968h-36.864V63.488h36.864z" fill="#748696" ></path></symbol><symbol id="icon-waveruler" viewBox="0 0 1024 1024"><path d="M72.704 210.944H936.96v36.864H72.704zM72.704 343.04H936.96v36.864H72.704zM72.704 475.136H936.96v36.864H72.704z" fill="#748696" ></path><path d="M76.8 872.96l-33.792-11.264c82.432-249.856 173.056-374.272 276.992-380.928 61.44-4.096 105.984 34.816 149.504 72.192 37.888 32.768 73.728 64 116.736 60.928 62.464-4.608 96.256-29.696 178.176-265.216l33.792 11.776c-83.968 242.688-123.904 283.136-209.408 289.28-57.856 4.096-100.864-33.28-142.848-69.632-39.424-34.304-76.8-66.56-123.392-63.488-86.016 5.12-170.496 128.512-245.76 356.352z" fill="#748696" ></path></symbol><symbol id="icon-draw_box" viewBox="0 0 1024 1024"><path d="M84.48 721.408h877.056v69.632H84.48zM920.576 266.24v348.16H125.44V266.24h795.136m40.96-40.96H84.48v430.08h877.056V225.28z" fill="#748696" ></path></symbol><symbol id="icon-draw_head_shoulders_bt" viewBox="0 0 1024 1024"><path d="M626.688 870.4h-1.536c-9.216-1.024-16.896-7.68-18.432-17.408L521.216 298.496 421.376 853.504c-1.536 9.216-9.728 16.384-18.944 16.896-9.216 0.512-17.92-5.632-20.992-14.848l-97.792-329.216-133.12 314.368-37.888-15.872 155.136-367.104c3.584-8.192 11.264-12.8 19.968-12.288 8.704 0.512 15.872 6.144 18.432 14.848l89.6 301.568L502.272 170.496c1.536-9.728 10.24-16.896 20.48-16.896s18.432 7.68 19.968 17.408l91.136 591.36L737.792 445.44c2.56-8.192 10.24-13.824 18.944-14.336 8.704-0.512 16.384 5.12 19.456 13.824l134.656 375.296-38.4 13.824-114.176-319.488-112.128 342.016c-2.56 8.192-10.752 13.824-19.456 13.824z" fill="#748696" ></path></symbol><symbol id="icon-draw_p_rays_lines" viewBox="0 0 1024 1024"><path d="M799.744 403.456c9.216 13.312 14.848 29.696 14.848 47.104 0 45.568-36.864 82.944-82.944 82.944-18.432 0-35.328-6.144-49.152-16.384-10.24-7.168-18.432-16.896-24.064-27.648l-17.92 17.408 17.92-17.408c-6.144-11.264-9.728-24.576-9.728-38.4 0-45.568 36.864-82.944 82.944-82.944 14.848 0 28.672 4.096 40.96 10.752l28.16-27.648c-19.456-13.824-43.52-21.504-69.12-21.504-66.56 0-120.832 54.272-120.832 120.832 0 24.064 7.168 46.592 19.456 66.048l-202.752 196.096c-20.48-16.384-46.592-26.112-75.264-26.112-66.56 0-120.832 54.272-120.832 120.832s53.76 120.832 120.32 120.832 120.832-54.272 120.832-120.832c0-25.088-7.68-48.64-20.992-68.096l202.24-195.584c20.992 17.408 47.616 27.648 77.312 27.648 66.56 0 120.832-54.272 120.832-120.832 0-27.648-9.216-53.76-25.088-74.24l-27.136 27.136z m-448 486.4c-45.568 0-82.944-36.864-82.944-82.944s36.864-82.944 82.944-82.944 82.944 36.864 82.944 82.944-36.864 82.944-82.944 82.944z" fill="#748696" ></path><path d="M827.392 376.832l158.208-152.064-26.112-26.624-159.232 153.088-28.16 27.136c10.752 6.144 19.968 14.848 27.136 25.088l28.16-26.624zM379.904 401.408c0-27.648-9.216-52.736-24.576-73.216l215.04-205.824-25.6-26.624L328.192 302.08c-19.456-13.824-43.52-22.016-69.632-22.016-66.56 0-120.832 54.272-120.832 120.832s54.272 120.832 120.832 120.832 121.344-53.76 121.344-120.32z m-204.288-0.512c0-45.568 36.864-82.944 82.944-82.944s82.944 37.376 82.944 82.944-36.864 82.944-82.944 82.944-82.944-36.864-82.944-82.944z" fill="#748696" ></path></symbol><symbol id="icon-draw_hlinesegment" viewBox="0 0 1024 1024"><path d="M276.992 489.984l471.04 6.656-0.512 37.376-471.04-6.656 0.512-37.376z" fill="#748696" ></path><path d="M926.72 427.008c-40.448-40.448-117.248-54.272-171.008 0-47.104 47.104-47.104 123.904 0 171.008s123.904 47.104 171.008 0 47.616-123.904 0-171.008z m-148.992 143.872c-32.256-32.256-32.256-84.48 0-116.736 32.256-32.256 84.48-32.256 116.736 0 32.256 32.256 32.256 84.48 0 116.736-32.256 32.256-84.48 32.256-116.736 0zM268.288 425.984C221.184 378.88 144.384 378.88 97.28 425.984s-47.104 123.904 0 171.008 123.904 47.104 171.008 0 47.104-123.904 0-171.008z m-143.872 143.872c-32.256-32.256-32.256-84.48 0-116.736 32.256-32.256 84.48-32.256 116.736 0 32.256 32.256 32.256 84.48 0 116.736-32.256 32.256-84.48 32.256-116.736 0z" fill="#748696" ></path></symbol></svg>',function(c){var l=(l=document.getElementsByTagName("script"))[l.length-1],h=l.getAttribute("data-injectcss"),l=l.getAttribute("data-disable-injectsvg");if(!l){var i,a,t,o,s,p=function(l,h){h.parentNode.insertBefore(l,h)};if(h&&!c.__iconfont__svg__cssinject__){c.__iconfont__svg__cssinject__=!0;try{document.write("<style>.svgfont {display: inline-block;width: 1em;height: 1em;fill: currentColor;vertical-align: -0.1em;font-size:16px;}</style>")}catch(l){console&&console.log(l)}}i=function(){var l,h=document.createElement("div");h.innerHTML=c._iconfont_svg_string_4529603,(h=h.getElementsByTagName("svg")[0])&&(h.setAttribute("aria-hidden","true"),h.style.position="absolute",h.style.width=0,h.style.height=0,h.style.overflow="hidden",h=h,(l=document.body).firstChild?p(h,l.firstChild):l.appendChild(h))},document.addEventListener?~["complete","loaded","interactive"].indexOf(document.readyState)?setTimeout(i,0):(a=function(){document.removeEventListener("DOMContentLoaded",a,!1),i()},document.addEventListener("DOMContentLoaded",a,!1)):document.attachEvent&&(t=i,o=c.document,s=!1,z(),o.onreadystatechange=function(){"complete"==o.readyState&&(o.onreadystatechange=null,d())})}function d(){s||(s=!0,t())}function z(){try{o.documentElement.doScroll("left")}catch(l){return void setTimeout(z,50)}d()}}(window);
1
+ window._iconfont_svg_string_4529603='<svg><symbol id="icon-jiance" viewBox="0 0 1024 1024"><path d="M512 1024c-4.266667 0-8.533333 0-12.8-4.266667C213.333333 925.866667 42.666667 708.266667 42.666667 430.933333V170.666667c0-17.066667 12.8-34.133333 29.866666-42.666667l426.666667-128h25.6l426.666667 128c17.066667 8.533333 29.866667 25.6 29.866666 42.666667v260.266666c0 273.066667-170.666667 494.933333-456.533333 588.8-4.266667 4.266667-8.533333 4.266667-12.8 4.266667zM128 200.533333v230.4c0 234.666667 140.8 418.133333 384 503.466667 243.2-85.333333 384-268.8 384-503.466667V200.533333L512 85.333333 128 200.533333z" ></path><path d="M563.2 704c-12.8 0-25.6-8.533333-29.866667-21.333333l-76.8-230.4-21.333333 68.266666c-4.266667 12.8-17.066667 21.333333-29.866667 21.333334H298.666667c-17.066667 0-34.133333-12.8-34.133334-34.133334s12.8-34.133333 34.133334-34.133333h85.333333L426.666667 341.333333c4.266667-12.8 17.066667-21.333333 29.866666-21.333333s25.6 8.533333 29.866667 21.333333l76.8 230.4 21.333333-68.266666c4.266667-12.8 17.066667-21.333333 29.866667-21.333334H725.333333c17.066667 0 34.133333 12.8 34.133334 34.133334s-12.8 34.133333-34.133334 34.133333h-85.333333L597.333333 682.666667c-4.266667 12.8-17.066667 21.333333-34.133333 21.333333z" ></path></symbol><symbol id="icon-tubiao_shizixian" viewBox="0 0 1024 1024"><path d="M896 469.333333h-256c-4.266667 0-12.8 0-17.066667 4.266667-12.8-34.133333-38.4-59.733333-72.533333-72.533333 4.266667-4.266667 4.266667-12.8 4.266667-17.066667V128c0-25.6-17.066667-42.666667-42.666667-42.666667s-42.666667 17.066667-42.666667 42.666667v256c0 4.266667 0 12.8 4.266667 17.066667-34.133333 12.8-59.733333 38.4-72.533333 72.533333-4.266667-4.266667-12.8-4.266667-17.066667-4.266667H128c-25.6 0-42.666667 17.066667-42.666667 42.666667s17.066667 42.666667 42.666667 42.666667h256c4.266667 0 12.8 0 17.066667-4.266667 12.8 34.133333 38.4 59.733333 72.533333 72.533333-4.266667 4.266667-4.266667 12.8-4.266667 17.066667v256c0 25.6 17.066667 42.666667 42.666667 42.666667s42.666667-17.066667 42.666667-42.666667v-256c0-4.266667 0-12.8-4.266667-17.066667 34.133333-12.8 59.733333-38.4 72.533333-72.533333 4.266667 4.266667 12.8 4.266667 17.066667 4.266667h256c25.6 0 42.666667-17.066667 42.666667-42.666667s-17.066667-42.666667-42.666667-42.666667z m-384 93.866667c-29.866667 0-51.2-25.6-51.2-51.2s25.6-51.2 51.2-51.2 51.2 25.6 51.2 51.2-21.333333 51.2-51.2 51.2z" ></path></symbol><symbol id="icon-xifu" viewBox="0 0 1024 1024"><path d="M449 62l138.6 126-84.6 91.8-138.6-126L449 62z m370.8 336.6l138.6 126-84.6 93.6-138.6-126 84.6-93.6z m-104.4 117l-189 207C468.8 787.4 369.8 791 305 733.4c-64.8-57.6-68.4-156.6-10.8-221.4l189-208.8-138.6-126-189 208.8C26 526.4 36.8 744.2 177.2 872c140.4 127.8 358.2 117 486-23.4l190.8-207-138.6-126z" ></path></symbol><symbol id="icon-maodianwenzi" viewBox="0 0 1024 1024"><path d="M124.342857 117.028571h530.285714v36.571429H124.342857z" fill="" ></path><path d="M373.028571 135.314286h29.257143v753.371428h-29.257143zM124.342857 135.314286h29.257143v76.8h-29.257143zM625.371429 135.314286h29.257142v76.8h-29.257142z" fill="" ></path><path d="M296.228571 870.4h190.171429v36.571429H296.228571z" fill="" ></path><path d="M716.8 486.4h36.571429v387.657143h-36.571429z" fill="" ></path><path d="M735.085714 906.971429c-113.371429 0-193.828571-124.342857-193.828571-128l29.257143-18.285715s73.142857 109.714286 164.571428 109.714286c54.857143 0 106.057143-36.571429 153.6-109.714286l29.257143 21.942857c-54.857143 80.457143-117.028571 124.342857-182.857143 124.342858z" fill="" ></path><path d="M632.685714 643.657143h204.8v36.571428h-204.8z" fill="" ></path><path d="M735.085714 519.314286m-43.885714 0a43.885714 43.885714 0 1 0 87.771429 0 43.885714 43.885714 0 1 0-87.771429 0Z" fill="" ></path><path d="M735.085714 581.485714c-32.914286 0-62.171429-29.257143-62.171428-62.171428 0-32.914286 29.257143-62.171429 62.171428-62.171429s62.171429 29.257143 62.171429 62.171429c-3.657143 32.914286-29.257143 62.171429-62.171429 62.171428z m0-87.771428c-14.628571 0-25.6 10.971429-25.6 25.6s10.971429 25.6 25.6 25.6 25.6-10.971429 25.6-25.6-14.628571-25.6-25.6-25.6z" fill="" ></path></symbol><symbol id="icon-maodian" viewBox="0 0 1024 1024"><path d="M511.146667 286.08a150.762667 150.762667 0 0 0-147.626667 121.6 150.613333 150.613333 0 0 0 90.453333 168.533333 150.826667 150.826667 0 0 0 183.04-55.68 150.592 150.592 0 0 0-18.986666-190.293333 150.058667 150.058667 0 0 0-106.88-44.16zM512 60.16c97.92 0 191.786667 39.68 259.84 109.653333 143.36 147.626667 143.36 381.653333 0 529.28L512 963.84 252.16 699.093333c-143.36-147.626667-143.36-381.653333 0-529.28C320.213333 99.626667 414.08 60.16 512 60.16z" fill="#148AFF" ></path></symbol><symbol id="icon-feibonaqisuduzulishan" viewBox="0 0 1024 1024"><path d="M658.285714 438.857143c-3.657143-10.971429-14.628571-21.942857-25.6-29.257143-3.657143 0-3.657143-3.657143-7.314285-3.657143-10.971429-7.314286-21.942857-7.314286-32.914286-7.314286-40.228571 0-73.142857 32.914286-73.142857 73.142858 0 14.628571 3.657143 25.6 10.971428 36.571428 7.314286 10.971429 14.628571 18.285714 25.6 25.6h3.657143c10.971429 7.314286 21.942857 7.314286 32.914286 7.314286 10.971429 0 18.285714-3.657143 29.257143-7.314286 3.657143 0 10.971429-3.657143 14.628571-7.314286 10.971429-7.314286 18.285714-18.285714 21.942857-29.257142 3.657143-10.971429 7.314286-18.285714 7.314286-29.257143 0-7.314286-3.657143-18.285714-7.314286-29.257143z m-54.857143 69.485714H585.142857c-7.314286 0-10.971429-3.657143-18.285714-7.314286-3.657143-3.657143-7.314286-10.971429-10.971429-14.628571V475.428571c0-18.285714 10.971429-29.257143 25.6-36.571428h10.971429c3.657143 0 10.971429 0 14.628571 3.657143 3.657143 0 10.971429 3.657143 10.971429 7.314285 7.314286 3.657143 10.971429 10.971429 10.971428 21.942858v3.657142c0 14.628571-10.971429 29.257143-25.6 32.914286zM226.742857 866.742857c-3.657143-29.257143-21.942857-51.2-47.542857-62.171428-7.314286-3.657143-14.628571-3.657143-25.6-3.657143h-10.971429c-36.571429 7.314286-62.171429 36.571429-62.171428 73.142857 0 40.228571 32.914286 73.142857 73.142857 73.142857 29.257143 0 54.857143-18.285714 65.828571-43.885714 3.657143-10.971429 7.314286-18.285714 7.314286-29.257143v-7.314286z m-73.142857 43.885714c-21.942857 0-36.571429-18.285714-36.571429-36.571428 0-21.942857 18.285714-36.571429 36.571429-36.571429s36.571429 14.628571 36.571429 36.571429-18.285714 36.571429-36.571429 36.571428z" fill="" ></path><path d="M735.085714 885.028571c0 7.314286-14.628571 10.971429-10.971428 18.285715H201.142857v-36.571429h522.971429c-3.657143 3.657143 10.971429 10.971429 10.971428 18.285714z" fill="" ></path><path d="M943.542857 866.742857v36.571429h-237.714286c3.657143-3.657143 3.657143-10.971429 3.657143-18.285715s0-10.971429-3.657143-18.285714h237.714286zM208.457143 420.571429c3.657143 0 7.314286-3.657143 10.971428-3.657143l-3.657142 113.371428-7.314286 292.571429v10.971428h-36.571429v-3.657142l7.314286-299.885715 3.657143-113.371428c3.657143 3.657143 14.628571 3.657143 25.6 3.657143z" fill="" ></path><path d="M226.742857 84.114286L219.428571 387.657143v36.571428c-7.314286-3.657143-18.285714-7.314286-25.6-3.657142-3.657143 0-7.314286 0-10.971428 3.657142v-40.228571l7.314286-303.542857 36.571428 3.657143zM164.900571 817.517714l363.629715-684.726857 32.292571 17.152-363.629714 684.726857zM197.632 844.032l717.677714-216.758857 10.605715 35.035428-717.714286 216.722286z" fill="" ></path><path d="M566.857143 501.028571c3.657143 3.657143 10.971429 7.314286 18.285714 7.314286l-29.257143 29.257143-343.771428 325.485714-25.6-25.6 343.771428-321.828571 29.257143-25.6s3.657143 7.314286 7.314286 10.971428zM932.571429 179.2L658.285714 438.857143l-29.257143 29.257143c0-10.971429-3.657143-18.285714-10.971428-21.942857-3.657143-3.657143-7.314286-7.314286-10.971429-7.314286l29.257143-25.6 274.285714-259.657143 21.942858 25.6z" fill="" ></path><path d="M190.171429 449.828571h351.085714v36.571429H190.171429z" fill="" ></path><path d="M588.8 526.628571h36.571429v354.742858h-36.571429z" fill="" ></path></symbol><symbol id="icon-feibonaqihuiche" viewBox="0 0 1024 1024"><path d="M201.142857 804.571429c-7.314286-32.914286-36.571429-58.514286-73.142857-58.514286s-65.828571 25.6-69.485714 58.514286c0 3.657143-3.657143 10.971429-3.657143 14.628571 0 7.314286 0 14.628571 3.657143 21.942857 10.971429 29.257143 36.571429 51.2 69.485714 51.2 32.914286 0 62.171429-21.942857 69.485714-51.2 3.657143-7.314286 3.657143-14.628571 3.657143-21.942857V804.571429z m-73.142857 51.2c-14.628571 0-21.942857-7.314286-29.257143-14.628572-3.657143-7.314286-7.314286-14.628571-7.314286-21.942857 0-7.314286 0-10.971429 3.657143-14.628571 7.314286-14.628571 18.285714-21.942857 32.914286-21.942858s25.6 7.314286 32.914286 21.942858c3.657143 3.657143 3.657143 10.971429 3.657143 14.628571 0 7.314286-3.657143 14.628571-7.314286 21.942857-3.657143 10.971429-14.628571 14.628571-29.257143 14.628572z" fill="" ></path><path d="M654.628571 822.857143c0 7.314286-25.6 10.971429-21.942857 18.285714h-438.857143v-36.571428h424.228572c0 3.657143 36.571429 10.971429 36.571428 18.285714z" fill="" ></path><path d="M969.142857 804.571429v36.571428h-351.085714c3.657143-7.314286 7.314286-14.628571 7.314286-21.942857 0-7.314286 0-10.971429-3.657143-14.628571h347.428571zM822.857143 416.914286c0 7.314286 0 14.628571 3.657143 21.942857 10.971429 29.257143 36.571429 51.2 69.485714 51.2 32.914286 0 62.171429-21.942857 69.485714-51.2 3.657143-7.314286 3.657143-14.628571 3.657143-21.942857 0-3.657143 0-10.971429-3.657143-14.628572-7.314286-32.914286-36.571429-58.514286-69.485714-58.514285-36.571429 0-65.828571 25.6-73.142857 58.514285v14.628572z m40.228571 21.942857c-3.657143-7.314286-7.314286-14.628571-7.314285-21.942857 0-7.314286 0-10.971429 3.657142-14.628572 7.314286-14.628571 18.285714-21.942857 32.914286-21.942857s25.6 7.314286 32.914286 21.942857c3.657143 3.657143 3.657143 10.971429 3.657143 14.628572 0 7.314286-3.657143 14.628571-7.314286 21.942857-7.314286 7.314286-18.285714 14.628571-29.257143 14.628571-10.971429 0-21.942857-3.657143-29.257143-14.628571z" fill="" ></path><path d="M369.371429 420.571429c0 7.314286 25.6 10.971429 21.942857 18.285714h438.857143v-36.571429H405.942857c0 3.657143-36.571429 10.971429-36.571428 18.285715z" fill="" ></path><path d="M54.857143 402.285714v36.571429h351.085714c-3.657143-7.314286-7.314286-14.628571-7.314286-21.942857 0-7.314286 0-10.971429 3.657143-14.628572H54.857143z" fill="" ></path><path d="M599.771429 621.714286c0 7.314286-29.257143 10.971429-25.6 18.285714H54.857143v-36.571429h501.028571c0 3.657143 43.885714 10.971429 43.885715 18.285715z" fill="" ></path><path d="M969.142857 603.428571v36.571429H555.885714c3.657143-7.314286 7.314286-14.628571 7.314286-21.942857 0-7.314286 0-10.971429-3.657143-14.628572h409.6z" fill="" ></path><path d="M424.228571 219.428571c0 7.314286 29.257143 10.971429 25.6 18.285715h515.657143v-36.571429H468.114286c0 3.657143-43.885714 10.971429-43.885715 18.285714z" fill="" ></path><path d="M54.857143 201.142857v36.571429h413.257143c-3.657143-7.314286-7.314286-14.628571-7.314286-21.942857 0-7.314286 0-10.971429 3.657143-14.628572H54.857143z" fill="" ></path></symbol><symbol id="icon-feibonaqiqixing" viewBox="0 0 1024 1024"><path d="M219.428571 753.371429h-14.628571c-7.314286 0-14.628571 0-21.942857 3.657142-7.314286 0-10.971429 3.657143-18.285714 7.314286-10.971429 7.314286-18.285714 14.628571-25.6 25.6-3.657143 10.971429-7.314286 21.942857-7.314286 36.571429 0 32.914286 21.942857 62.171429 51.2 69.485714 7.314286 3.657143 14.628571 3.657143 21.942857 3.657143 3.657143 0 10.971429 0 14.628571-3.657143 10.971429-3.657143 18.285714-7.314286 29.257143-14.628571 7.314286-3.657143 18.285714-14.628571 21.942857-25.6 3.657143-7.314286 7.314286-18.285714 7.314286-29.257143 0-36.571429-25.6-65.828571-58.514286-73.142857z m18.285715 80.457142c-3.657143 10.971429-10.971429 18.285714-18.285715 25.6 0 0-3.657143 0-7.314285 3.657143h-10.971429c-7.314286 0-14.628571-3.657143-21.942857-7.314285-7.314286-7.314286-14.628571-18.285714-14.628571-29.257143v-3.657143c0-10.971429 7.314286-18.285714 14.628571-25.6 3.657143 0 3.657143-3.657143 7.314286-3.657143s7.314286-3.657143 14.628571-3.657143 10.971429 0 14.628572 3.657143c14.628571 7.314286 21.942857 18.285714 21.942857 32.914286 3.657143 3.657143 3.657143 3.657143 0 7.314285z" fill="" ></path><path d="M263.314286 808.228571h508.342857v36.571429H263.314286zM186.514286 256h36.571428v504.685714h-36.571428z" fill="" ></path><path d="M826.514286 753.371429h-14.628572c-7.314286 0-14.628571 0-21.942857 3.657142-7.314286 0-10.971429 3.657143-18.285714 7.314286-10.971429 7.314286-18.285714 14.628571-25.6 25.6-3.657143 10.971429-7.314286 21.942857-7.314286 36.571429 0 32.914286 21.942857 62.171429 51.2 69.485714 7.314286 3.657143 14.628571 3.657143 21.942857 3.657143 3.657143 0 10.971429 0 14.628572-3.657143 10.971429-3.657143 18.285714-7.314286 29.257143-14.628571 10.971429-7.314286 18.285714-18.285714 21.942857-29.257143 3.657143-7.314286 7.314286-18.285714 7.314285-29.257143 0-32.914286-25.6-62.171429-58.514285-69.485714z m18.285714 80.457142c-3.657143 10.971429-10.971429 18.285714-18.285714 25.6 0 0-3.657143 0-7.314286 3.657143h-10.971429c-7.314286 0-14.628571-3.657143-21.942857-7.314285-7.314286-7.314286-14.628571-18.285714-14.628571-29.257143v-3.657143c0-10.971429 7.314286-18.285714 14.628571-25.6 3.657143 0 3.657143-3.657143 7.314286-3.657143s7.314286-3.657143 14.628571-3.657143 10.971429 0 14.628572 3.657143c14.628571 7.314286 21.942857 18.285714 21.942857 32.914286 3.657143 3.657143 3.657143 3.657143 0 7.314285zM219.428571 146.285714h-14.628571c-7.314286 0-14.628571 0-21.942857 3.657143-7.314286 0-10.971429 3.657143-18.285714 7.314286-10.971429 7.314286-18.285714 14.628571-25.6 25.6-3.657143 10.971429-7.314286 25.6-7.314286 36.571428 0 32.914286 21.942857 62.171429 51.2 69.485715 7.314286 3.657143 14.628571 3.657143 21.942857 3.657143 3.657143 0 10.971429 0 14.628571-3.657143 10.971429-3.657143 18.285714-7.314286 29.257143-14.628572 7.314286-3.657143 18.285714-14.628571 21.942857-25.6 3.657143-10.971429 7.314286-18.285714 7.314286-29.257143 0-36.571429-25.6-65.828571-58.514286-73.142857z m18.285715 80.457143c0 10.971429-7.314286 21.942857-18.285715 25.6 0 0-3.657143 0-7.314285 3.657143h-7.314286c-7.314286 0-14.628571-3.657143-21.942857-7.314286-7.314286-7.314286-14.628571-18.285714-14.628572-29.257143v-3.657142c0-10.971429 7.314286-18.285714 14.628572-25.6 3.657143 0 3.657143-3.657143 7.314286-3.657143 3.657143-3.657143 7.314286-3.657143 14.628571-3.657143 3.657143 0 10.971429 0 14.628571 3.657143 14.628571 7.314286 21.942857 18.285714 21.942858 32.914285 0 3.657143 0 7.314286-3.657143 7.314286zM416.914286 830.171429l-36.571429-7.314286c7.314286-58.514286-3.657143-106.057143-32.914286-142.628572-10.971429-14.628571-25.6-25.6-36.571428-32.914285-25.6-18.285714-58.514286-29.257143-98.742857-36.571429l3.657143-36.571428c3.657143 0 58.514286 3.657143 113.371428 40.228571 25.6 14.628571 43.885714 32.914286 58.514286 58.514286 47.542857 73.142857 29.257143 153.6 29.257143 157.257143z" fill="" ></path><path d="M522.971429 837.485714l-36.571429-7.314285c10.971429-102.4-7.314286-186.514286-58.514286-248.685715-21.942857-25.6-43.885714-43.885714-69.485714-62.171428-43.885714-25.6-102.4-43.885714-168.228571-54.857143l3.657142-36.571429c3.657143 0 102.4 7.314286 190.171429 65.828572 40.228571 25.6 69.485714 54.857143 95.085714 91.428571 76.8 117.028571 47.542857 248.685714 43.885715 252.342857z" fill="" ></path><path d="M629.028571 837.485714l-36.571428-7.314285c14.628571-135.314286-10.971429-245.028571-80.457143-329.142858-29.257143-32.914286-58.514286-58.514286-91.428571-80.457142-58.514286-36.571429-131.657143-62.171429-219.428572-76.8l3.657143-36.571429c7.314286 0 131.657143 10.971429 245.028571 87.771429 47.542857 32.914286 87.771429 69.485714 120.685715 117.028571 98.742857 149.942857 62.171429 321.828571 58.514285 325.485714z" fill="" ></path></symbol><symbol id="icon-feibonaqizhouqixian" viewBox="0 0 1024 1024"><path d="M52.244898 975.245061v-919.510204h83.591837v919.510204H52.244898zM198.530612 975.245061v-919.510204h83.591837v919.510204H198.530612zM344.816327 975.245061v-919.510204h83.591836v919.510204h-83.591836zM553.795918 975.245061v-919.510204h83.591837v919.510204h-83.591837zM888.163265 975.245061v-919.510204h83.591837v919.510204h-83.591837z" ></path></symbol><symbol id="icon-jiangenjiaoduxian" viewBox="0 0 1024 1024"><path d="M658.285714 438.857143c-3.657143-10.971429-14.628571-21.942857-25.6-29.257143-3.657143 0-3.657143-3.657143-7.314285-3.657143-10.971429-7.314286-21.942857-7.314286-32.914286-7.314286-40.228571 0-73.142857 32.914286-73.142857 73.142858 0 14.628571 3.657143 25.6 10.971428 36.571428 7.314286 10.971429 14.628571 18.285714 25.6 25.6h3.657143c10.971429 7.314286 21.942857 7.314286 32.914286 7.314286 10.971429 0 18.285714-3.657143 29.257143-7.314286 3.657143 0 10.971429-3.657143 14.628571-7.314286 10.971429-7.314286 18.285714-18.285714 21.942857-29.257142 3.657143-10.971429 7.314286-18.285714 7.314286-29.257143 0-10.971429-3.657143-21.942857-7.314286-29.257143z m-54.857143 65.828571H585.142857c-7.314286 0-10.971429-3.657143-18.285714-7.314285-3.657143-3.657143-7.314286-10.971429-10.971429-14.628572v-10.971428c0-18.285714 10.971429-29.257143 25.6-36.571429h10.971429c3.657143 0 10.971429 0 14.628571 3.657143 3.657143 0 10.971429 3.657143 10.971429 7.314286 7.314286 3.657143 10.971429 10.971429 10.971428 21.942857v3.657143c0 14.628571-10.971429 29.257143-25.6 32.914285zM226.742857 863.085714c-3.657143-29.257143-21.942857-51.2-47.542857-62.171428-7.314286-3.657143-14.628571-3.657143-25.6-3.657143h-10.971429c-36.571429 7.314286-62.171429 36.571429-62.171428 73.142857 0 40.228571 32.914286 73.142857 73.142857 73.142857 29.257143 0 54.857143-18.285714 65.828571-43.885714 3.657143-10.971429 7.314286-18.285714 7.314286-29.257143v-7.314286z m-73.142857 43.885715c-21.942857 0-36.571429-18.285714-36.571429-36.571429 0-21.942857 18.285714-36.571429 36.571429-36.571429s36.571429 14.628571 36.571429 36.571429-18.285714 36.571429-36.571429 36.571429z" fill="" ></path><path d="M735.085714 881.371429c0 7.314286-14.628571 10.971429-10.971428 18.285714H201.142857v-36.571429h522.971429c-3.657143 3.657143 10.971429 10.971429 10.971428 18.285715z" fill="" ></path><path d="M943.542857 863.085714v36.571429h-237.714286c3.657143-3.657143 3.657143-10.971429 3.657143-18.285714s0-10.971429-3.657143-18.285715h237.714286zM263.314286 405.942857h10.971428l-25.6 109.714286-69.485714 285.257143-3.657143 10.971428-36.571428-7.314285v-3.657143L208.457143 512l25.6-109.714286c10.971429 0 18.285714 3.657143 29.257143 3.657143z" fill="" ></path><path d="M351.085714 84.114286l-69.485714 296.228571-7.314286 36.571429c-7.314286-7.314286-14.628571-10.971429-25.6-10.971429h-10.971428l10.971428-36.571428L314.514286 73.142857l36.571428 10.971429zM164.754286 813.970286l363.593143-684.763429 32.329142 17.188572-363.629714 684.726857z" fill="" ></path><path d="M197.558857 840.411429l717.714286-216.758858 10.605714 34.998858L208.091429 875.410286z" fill="" ></path><path d="M566.857143 497.371429c3.657143 3.657143 10.971429 7.314286 18.285714 7.314285l-29.257143 29.257143-343.771428 325.485714-25.6-25.6 343.771428-321.828571 29.257143-25.6s3.657143 7.314286 7.314286 10.971429zM932.571429 175.542857L658.285714 438.857143l-29.257143 29.257143c0-10.971429-3.657143-18.285714-10.971428-21.942857-3.657143-3.657143-7.314286-7.314286-10.971429-7.314286l29.257143-25.6 274.285714-259.657143 21.942858 21.942857z" fill="" ></path></symbol><symbol id="icon-GoldenSection" viewBox="0 0 1024 1024"><path d="M960.5 170.7v55.1h-897v-55.1h897z m0 156.9v55.1H510.8v-55.1h449.7z m0 156.9v55.1H510.8v-55.1h449.7zM334.3 263.7c43 0 79.8 10.2 94.1 14.7-1 16.8-4.1 48.3-5.6 84.9l-17.4 1.5c-4.1-62.5-37.8-80.3-83.9-80.3-83.4 0-147.8 79.8-147.8 179.4 0 78.8 38.9 131.1 104.3 131.1 24.5 0 43-7.1 48.6-35.6l8.7-45.2c7.2-38.6 3.6-40.7-48.1-45.7l4.1-15.8H436l-4.1 15.8c-28.6 4.1-31.7 6.6-38.9 45.7l-7.7 41.7c-3.1 15.2-4.1 29-2.6 39.1-31.7 8.1-71.1 19.8-113.5 19.8-96.7 0-162.6-52.9-162.6-148.4 0.1-120.8 95.3-202.7 227.7-202.7z m626.2 377.6v55.1h-897v-55.1h897z m0 156.9v55.1h-897v-55.1h897z" ></path></symbol><symbol id="icon-PercentageLine" viewBox="0 0 1024 1024"><path d="M960.5 170.7v55.2h-897v-55.2h897z m0 156.8v55.2H510.7v-55.2h449.8z m-764.2-24.7v104.6H91.1V302.8h105.2z m764.2 181.6v55.2H510.7v-55.2h449.8z m-501.1-24.7v104.6H354.2V459.7h105.2zM367.1 290l38.9 39.1-19.6 19.4-223.2 221.9-19.6 19.4-38.9-39.1 19.6-19.4 223.2-221.9 19.6-19.4z m593.4 351.3v55.2h-897v-55.2h897z m0 156.9v55.2h-897v-55.2h897z" ></path></symbol><symbol id="icon-a-xiangpicachuxiangpica" viewBox="0 0 1024 1024"><path d="M554.3 850.7L981 424c12.5-12.5 12.5-32.8 0-45.3L636.7 34.6c-12.5-12.5-32.8-12.5-45.3 0L90.5 535.5c-50 50-50 131 0 181l272.1 270.3c24 23.8 56.4 37.2 90.2 37.2H864c17.7 0 32-14.3 32-32s-14.3-32-32-32H599.5c-57 0-85.6-68.9-45.2-109.3z m71.1-736.9l276.4 276.4c6.2 6.2 6.2 16.4 0 22.6L607.9 706.6l-299-299 293.8-293.9c6.3-6.2 16.4-6.2 22.7 0.1zM135.8 580.7l127.9-127.9 299 299-127.9 127.9c-25 25-65.5 25-90.5 0L135.8 671.3c-25-25-25-65.6 0-90.6z" fill="#8A8A8A" ></path></symbol><symbol id="icon-jiagefanwei" viewBox="0 0 1024 1024"><path d="M576 629.312h138.688l-160 213.376-160-213.376H512V192h64v437.312zM832 896v-64h192v192h-192v-64H0v-64h832zM192 128v64H0V0h192v64h832v64H192zM64 64v64h64V64H64z m832 832v64h64v-64h-64z m-373.312-202.688l32 42.688 32-42.688h-64z" fill="#767D87" ></path></symbol><symbol id="icon-shijianfanwei" viewBox="0 0 1024 1024"><path d="M614.4 512V409.6l170.65 128-170.65 128V563.2H256V512h358.4z m256 256h51.2v153.6H768V768h51.2V102.4h51.2V768zM153.6 256h-51.2V102.4H256V256h-51.2v665.6h-51.2V256z m0-102.4v51.2h51.2v-51.2h-51.2z m665.6 665.6v51.2h51.2v-51.2h-51.2zM665.6 512v51.2l34.15-25.6L665.6 512z" fill="#767D87" ></path></symbol><symbol id="icon-buxiangjiaojiao" viewBox="0 0 1024 1024"><path d="M84.114286 512c-36.571429-14.628571-58.514286-54.857143-43.885715-95.085714s54.857143-58.514286 95.085715-43.885715c36.571429 14.628571 58.514286 54.857143 43.885714 95.085715S120.685714 526.628571 84.114286 512z m36.571428-102.4c-18.285714-7.314286-40.228571 0-47.542857 21.942857-7.314286 18.285714 0 40.228571 21.942857 47.542857 18.285714 7.314286 40.228571 0 47.542857-21.942857 7.314286-21.942857-3.657143-40.228571-21.942857-47.542857z" fill="" ></path><path d="M153.6 394.971429l625.371429-277.942858 14.628571 32.914286-625.371429 277.942857z" fill="" ></path><path d="M815.542857 168.228571c-36.571429-14.628571-58.514286-54.857143-43.885714-95.085714 14.628571-36.571429 54.857143-58.514286 95.085714-43.885714s58.514286 54.857143 43.885714 95.085714-54.857143 58.514286-95.085714 43.885714z m40.228572-102.4c-18.285714-7.314286-40.228571 0-47.542858 21.942858-7.314286 18.285714 0 40.228571 21.942858 47.542857 18.285714 7.314286 40.228571 0 47.542857-21.942857s-3.657143-40.228571-21.942857-47.542858zM190.171429 614.4c18.285714 36.571429 7.314286 80.457143-29.257143 98.742857s-80.457143 7.314286-98.742857-29.257143-7.314286-80.457143 29.257142-98.742857c32.914286-18.285714 80.457143-3.657143 98.742858 29.257143z m-32.914286 18.285714c-10.971429-18.285714-32.914286-21.942857-51.2-14.628571-18.285714 10.971429-21.942857 32.914286-14.628572 51.2 10.971429 18.285714 32.914286 21.942857 51.2 14.628571s25.6-32.914286 14.628572-51.2z" fill="" ></path><path d="M186.514286 658.285714l658.285714 190.171429-10.971429 36.571428L179.2 694.857143z" fill="" ></path><path d="M961.828571 859.428571c18.285714 36.571429 7.314286 80.457143-29.257142 98.742858s-80.457143 7.314286-98.742858-29.257143-7.314286-80.457143 29.257143-98.742857c36.571429-21.942857 80.457143-7.314286 98.742857 29.257142z m-29.257142 14.628572c-10.971429-18.285714-32.914286-21.942857-51.2-14.628572-18.285714 10.971429-21.942857 32.914286-14.628572 51.2 10.971429 18.285714 32.914286 21.942857 51.2 14.628572 14.628571-10.971429 21.942857-29.257143 14.628572-51.2z" fill="" ></path></symbol><symbol id="icon-tubiao_buxiangjiaotongdao" viewBox="0 0 1024 1024"><path d="M192 473.6c8.533333 0 21.333333 0 29.866667-4.266667 51.2-12.8 81.066667-55.466667 85.333333-106.666666h21.333333l371.2-98.133334c4.266667 0 12.8-4.266667 17.066667-8.533333 8.533333 12.8 21.333333 25.6 38.4 34.133333 17.066667 8.533333 38.4 17.066667 59.733333 17.066667 8.533333 0 21.333333 0 29.866667-4.266667 64-17.066667 98.133333-81.066667 81.066667-145.066666s-81.066667-98.133333-145.066667-81.066667c-29.866667 8.533333-55.466667 25.6-72.533333 55.466667-8.533333 17.066667-12.8 34.133333-17.066667 51.2h-17.066667L302.933333 281.6c-4.266667 0-12.8 4.266667-17.066666 8.533333-25.6-38.4-76.8-59.733333-128-46.933333-59.733333 17.066667-98.133333 81.066667-81.066667 140.8 12.8 55.466667 59.733333 89.6 115.2 89.6z m571.733333-311.466667c8.533333-12.8 17.066667-21.333333 34.133334-25.6 29.866667-8.533333 59.733333 8.533333 64 38.4s-8.533333 59.733333-38.4 64c-12.8 4.266667-29.866667 0-38.4-4.266666-12.8-8.533333-21.333333-17.066667-25.6-34.133334-8.533333-8.533333-4.266667-25.6 4.266666-38.4zM174.933333 302.933333c29.866667-8.533333 59.733333 8.533333 68.266667 38.4 8.533333 29.866667-8.533333 59.733333-38.4 64-29.866667 8.533333-59.733333-8.533333-68.266667-34.133333-4.266667-29.866667 12.8-59.733333 38.4-68.266667zM840.533333 755.2c-29.866667-8.533333-64-4.266667-89.6 12.8-17.066667 8.533333-29.866667 21.333333-38.4 34.133333-4.266667-4.266667-8.533333-8.533333-17.066666-8.533333l-371.2-98.133333h-17.066667c-4.266667-46.933333-38.4-89.6-85.333333-106.666667-64-17.066667-128 21.333333-145.066667 81.066667-8.533333 29.866667-4.266667 64 12.8 89.6 17.066667 25.6 42.666667 46.933333 72.533333 55.466666 8.533333 4.266667 21.333333 4.266667 29.866667 4.266667 21.333333 0 38.4-4.266667 59.733333-17.066667 17.066667-8.533333 29.866667-21.333333 38.4-34.133333 4.266667 4.266667 8.533333 8.533333 17.066667 8.533333l371.2 98.133334h21.333333c0 17.066667 4.266667 34.133333 17.066667 51.2 17.066667 25.6 42.666667 46.933333 72.533333 55.466666 8.533333 4.266667 21.333333 4.266667 29.866667 4.266667 51.2 0 98.133333-34.133333 115.2-85.333333 8.533333-29.866667 4.266667-64-12.8-89.6-25.6-29.866667-51.2-46.933333-81.066667-55.466667z m-597.333333-38.4c-4.266667 12.8-12.8 25.6-25.6 34.133333-12.8 8.533333-25.6 8.533333-38.4 4.266667-12.8-4.266667-25.6-12.8-34.133333-25.6-8.533333-12.8-8.533333-25.6-4.266667-38.4 4.266667-25.6 29.866667-38.4 51.2-38.4h12.8c25.6 4.266667 42.666667 34.133333 38.4 64z m614.4 166.4c-8.533333 29.866667-38.4 46.933333-64 38.4-12.8-4.266667-25.6-12.8-34.133333-25.6-8.533333-12.8-8.533333-25.6-4.266667-38.4 4.266667-12.8 12.8-25.6 25.6-34.133333 8.533333-4.266667 17.066667-8.533333 25.6-8.533334h12.8c12.8 4.266667 25.6 12.8 34.133333 25.6s8.533333 25.6 4.266667 42.666667z" ></path></symbol><symbol id="icon-drawicon_1" viewBox="0 0 1024 1024"><path d="M510.981095 4.075622L91.19204 508.943284h261.349254V1024h310.256716V508.943284h268.991045z" fill="#FF1F14" ></path></symbol><symbol id="icon-drawicon_2" viewBox="0 0 1024 1024"><path d="M512 1024l419.789055-504.867662h-261.349254V4.075622H360.183085v515.056716H91.19204z" fill="#03F838" ></path></symbol><symbol id="icon-tooltiptext" viewBox="0 0 1024 1024"><path d="M170.666667 85.333333 853.333333 85.333333C900.266667 85.333333 938.666667 123.733333 938.666667 170.666667L938.666667 682.666667C938.666667 729.6 900.266667 768 853.333333 768L682.666667 768 512 938.666667 341.333333 768 170.666667 768C123.733333 768 85.333333 729.6 85.333333 682.666667L85.333333 170.666667C85.333333 123.733333 123.733333 85.333333 170.666667 85.333333M213.333333 213.333333 213.333333 298.666667 810.666667 298.666667 810.666667 213.333333 213.333333 213.333333M213.333333 384 213.333333 469.333333 640 469.333333 640 384 213.333333 384M213.333333 554.666667 213.333333 640 725.333333 640 725.333333 554.666667 213.333333 554.666667Z" ></path></symbol><symbol id="icon-Tooltip" viewBox="0 0 1102 1024"><path d="M0 109.714286a73.142857 73.142857 0 0 1 73.142857-73.142857h841.142857a73.142857 73.142857 0 0 1 73.142857 73.142857V658.285714a73.142857 73.142857 0 0 1-73.142857 73.142857h-658.285714a73.142857 73.142857 0 0 0-58.514286 29.257143L0 1024V109.714286z m914.285714 0H73.142857V804.571429l65.828572-87.771429A146.285714 146.285714 0 0 1 256 658.285714h658.285714V109.714286z" ></path></symbol><symbol id="icon-fangkuai" viewBox="0 0 1024 1024"><path d="M65.166185 65.144696l893.016807 0 0 893.016807-893.016807 0 0-893.016807Z" fill="#f1f1f1" ></path></symbol><symbol id="icon-draw_quadrangle" viewBox="0 0 1024 1024"><path d="M353.7 378.4h-47.1L93 651.8h47.1z" fill="#748696" ></path><path d="M913.1 341.3H335.6l-29 37.1h624.6l29-37.1z" fill="#748696" ></path><path d="M884.1 378.4L670.6 651.8H93l-29 37.1h624.6l27-34.6 215.6-275.9z" fill="#748696" ></path></symbol><symbol id="icon-arrow" viewBox="0 0 1024 1024"><path d="M570.3 939.6c-11.7 0-23-6.5-28.6-17.7l-95.2-190.1-137 102.7c-9.7 7.3-22.6 8.4-33.5 3-10.8-5.4-17.7-16.4-17.7-28.5l-2.7-672.9c-0.1-12.7 7.4-24.2 19-29.4 11.6-5.2 25.1-3 34.5 5.5l496.4 449.2c9 8.1 12.6 20.6 9.4 32.2-3.2 11.7-12.7 20.5-24.6 22.9l-165.5 33.1L717.2 834c3.8 7.6 4.4 16.4 1.8 24.4-2.7 8.1-8.5 14.7-16 18.5l-118.3 59.2c-4.7 2.5-9.6 3.5-14.4 3.5zM457.8 651.3c2.4 0 4.9 0.3 7.3 0.9 9.2 2.2 17 8.3 21.3 16.8l98.1 195.8 61.1-30.6-96.8-193.3c-4.5-8.9-4.5-19.4-0.1-28.4s12.7-15.4 22.5-17.3l144.3-28.9-395.6-357.9 2.1 536.7 116.6-87.4c5.6-4.2 12.4-6.4 19.2-6.4z" fill="#231815" ></path></symbol><symbol id="icon-draw_arc" viewBox="0 0 1024 1024"><path d="M 186 63.9 c -66.8 0 -121 54.2 -121 121 s 54.2 121 121 121 s 121 -54.2 121 -121 s -54.1 -121 -121 -121 Z m -0.1 203.5 c -45.7 0 -82.7 -37 -82.7 -82.7 s 37 -82.7 82.7 -82.7 s 82.7 37 82.7 82.7 c 0.1 45.7 -37 82.7 -82.7 82.7 Z M 839.6 717.1 c -66.8 0 -121 54.2 -121 121 s 54.2 121 121 121 s 121 -54.2 121 -121 s -54.1 -121 -121 -121 Z m -0.1 203.6 c -45.7 0 -82.7 -37 -82.7 -82.7 s 37 -82.7 82.7 -82.7 s 82.7 37 82.7 82.7 c 0.1 45.6 -37 82.7 -82.7 82.7 Z M 698.9 197.5 c -66.8 0 -121 54.2 -121 121 s 54.2 121 121 121 s 121 -54.2 121 -121 s -54.2 -121 -121 -121 Z m -0.1 203.6 c -45.7 0 -82.7 -37 -82.7 -82.7 s 37 -82.7 82.7 -82.7 s 82.7 37 82.7 82.7 s -37 82.7 -82.7 82.7 Z" fill="#748696" ></path><path d="M 364.3 164.8 c -21.6 0 -43 1.4 -63.9 4.1 c -4.1 0.5 -7.2 4 -7.2 8.2 v 21.7 c 0 5 4.5 8.9 9.4 8.2 c 20.8 -2.9 42 -4.4 63.5 -4.4 c 91.6 0 177 26.8 248.7 72.9 c 5.5 3.6 12.8 -0.4 12.8 -6.9 v -23.8 c 0 -2.9 -1.5 -5.6 -3.9 -7 c -75.5 -46.3 -164.3 -73 -259.4 -73 Z M 772.2 377.7 v 20.9 h -29.4 c 52.5 74.8 83.3 165.8 83.3 264.1 c 0 26.5 -2.3 52.5 -6.6 77.8 h 35.7 c 4.1 -25.6 6.2 -51.8 6.2 -78.5 c 0.2 -105.7 -32.9 -203.7 -89.2 -284.3 Z" fill="#748696" ></path></symbol><symbol id="icon-draw_line" viewBox="0 0 1024 1024"><path d="M236.1 757.3l533.6-524 25.9 26.6-533.7 524z" fill="#748696" ></path><path d="M837.2 66.4c-66.8 0-121 54.2-121 121s54.2 121 121 121 121-54.2 121-121-54.2-121-121-121z m-0.1 203.5c-45.7 0-82.7-37-82.7-82.7s37-82.7 82.7-82.7 82.7 37 82.7 82.7-37 82.7-82.7 82.7zM185 717.3c-66.8 0-121 54.2-121 121s54.2 121 121 121 121-54.2 121-121-54.2-121-121-121z m-0.1 203.6c-45.7 0-82.7-37-82.7-82.7s37-82.7 82.7-82.7 82.7 37 82.7 82.7-37 82.7-82.7 82.7z" fill="#748696" ></path></symbol><symbol id="icon-draw_rays" viewBox="0 0 1024 1024"><path d="M238.6 760.3l408.2-399.7 26.2 26.3-408.2 399.7z" fill="#748696" ></path><path d="M717.2 186.4c-66.8 0-121 54.2-121 121s54.2 121 121 121 121-54.2 121-121-54.2-121-121-121z m-0.1 203.5c-45.7 0-82.7-37-82.7-82.7s37-82.7 82.7-82.7 82.7 37 82.7 82.7-37 82.7-82.7 82.7zM185 717.3c-66.8 0-121 54.2-121 121s54.2 121 121 121 121-54.2 121-121-54.2-121-121-121z m-0.1 203.6c-45.7 0-82.7-37-82.7-82.7s37-82.7 82.7-82.7 82.7 37 82.7 82.7-37 82.7-82.7 82.7z" fill="#748696" ></path><path d="M800.8 253.5l158.5-151.6-25.9-26.6L774 228.1c10.2 7 19.2 15.6 26.8 25.4z" fill="#748696" ></path></symbol><symbol id="icon-rectangle" viewBox="0 0 1024 1024"><path d="M 273.9 168.3 H 739 v 37.1 H 273.9 Z M 273.9 819.6 H 739 v 37.1 H 273.9 Z M 165.812 740.898 v -465.1 h 37.1 v 465.1 Z M 821.11 740.896 v -465.1 h 37.1 v 465.1 Z" fill="#748696" ></path><path d="M 184.7 66.2 c -66.8 0 -121 54.2 -121 121 s 54.2 121 121 121 s 121 -54.2 121 -121 s -54.1 -121 -121 -121 Z m -0.1 203.5 c -45.7 0 -82.7 -37 -82.7 -82.7 s 37 -82.7 82.7 -82.7 s 82.7 37 82.7 82.7 c 0.1 45.7 -37 82.7 -82.7 82.7 Z M 184.7 717.5 c -66.8 0 -121 54.2 -121 121 s 54.2 121 121 121 s 121 -54.2 121 -121 s -54.1 -121 -121 -121 Z m -0.1 203.6 c -45.7 0 -82.7 -37 -82.7 -82.7 s 37 -82.7 82.7 -82.7 s 82.7 37 82.7 82.7 c 0.1 45.6 -37 82.7 -82.7 82.7 Z M 840 717.5 c -66.8 0 -121 54.2 -121 121 s 54.2 121 121 121 s 121 -54.2 121 -121 s -54.1 -121 -121 -121 Z m -0.1 203.6 c -45.7 0 -82.7 -37 -82.7 -82.7 s 37 -82.7 82.7 -82.7 s 82.7 37 82.7 82.7 c 0.1 45.6 -37 82.7 -82.7 82.7 Z M 840 66.2 c -66.8 0 -121 54.2 -121 121 s 54.2 121 121 121 s 121 -54.2 121 -121 s -54.1 -121 -121 -121 Z m -0.1 203.5 c -45.7 0 -82.7 -37 -82.7 -82.7 s 37 -82.7 82.7 -82.7 s 82.7 37 82.7 82.7 c 0.1 45.7 -37 82.7 -82.7 82.7 Z" fill="#748696" ></path></symbol><symbol id="icon-draw_parallel_lines" viewBox="0 0 1024 1024"><path d="M 242.242 556.785 l 333.663 -324.036 l 25.847 26.616 L 268.09 583.4 Z" fill="#748696" ></path><path d="M 643.4 65.9 c -66.8 0 -121 54.2 -121 121 s 54.2 121 121 121 s 121 -54.2 121 -121 s -54.2 -121 -121 -121 Z m -0.1 203.5 c -45.7 0 -82.7 -37 -82.7 -82.7 s 37 -82.7 82.7 -82.7 s 82.7 37 82.7 82.7 s -37 82.7 -82.7 82.7 Z" fill="#748696" ></path><path d="M 801.1 593.9 L 959.3 442 l -25.9 -26.6 l -159.1 153.1 c 10.2 7 19.2 15.6 26.8 25.4 Z M 603.8 733.9 L 396.6 933.4 l 25.4 26.2 l 206.3 -198.2 c -9.5 -7.9 -17.7 -17.2 -24.5 -27.5 Z M 773.4 620.8 c 9.2 13.3 14.6 29.5 14.6 47 c 0 45.7 -37 82.7 -82.7 82.7 c -18.4 0 -35.4 -6 -49.1 -16.2 l -27.9 27 c 20.9 17.3 47.8 27.7 77.1 27.7 c 66.8 0 121 -54.2 121 -121 c 0 -27.9 -9.4 -53.6 -25.3 -74 l -27.7 26.8 Z M 622.5 667.8 c 0 -45.7 37 -82.7 82.7 -82.7 c 14.9 0 28.8 3.9 40.8 10.8 l 28.2 -27.4 c -19.6 -13.6 -43.3 -21.6 -69 -21.6 c -66.8 0 -121 54.2 -121 121 c 0 24.3 7.2 46.9 19.5 65.9 l 28.3 -27.5 c -6 -11.4 -9.5 -24.6 -9.5 -38.5 Z" fill="#748696" ></path><path d="M 773.4 620.8 l 27.8 -26.9 c -7.6 -9.8 -16.6 -18.4 -26.8 -25.4 l -28.2 27.4 c 10.8 6.1 20.1 14.7 27.2 24.9 Z M 632.1 706.4 l -28.3 27.5 c 6.7 10.3 15 19.6 24.5 27.4 l 27.9 -27 c -10 -7.3 -18.2 -16.9 -24.1 -27.9 Z M 185.2 522.8 c -66.8 0 -121 54.2 -121 121 s 54.2 121 121 121 s 121 -54.2 121 -121 s -54.2 -121 -121 -121 Z m -0.1 203.6 c -45.7 0 -82.7 -37 -82.7 -82.7 s 37 -82.7 82.7 -82.7 s 82.7 37 82.7 82.7 s -37 82.7 -82.7 82.7 Z" fill="#748696" ></path></symbol><symbol id="icon-setting" viewBox="0 0 1024 1024"><path d="M 810.342 334.848 c 16.384 29.184 45.824 46.592 78.592 46.592 c 27.392 0 49.818 22.938 49.818 51.302 v 158.67 c 0 28.16 -22.426 51.2 -49.818 51.2 c -32.87 0 -62.208 17.458 -78.592 46.694 a 94.72 94.72 0 0 0 0 93.286 a 52.07 52.07 0 0 1 -18.278 69.99 L 658.688 931.84 a 49.152 49.152 0 0 1 -67.994 -18.637 a 89.344 89.344 0 0 0 -78.592 -46.745 c -32.768 0 -62.208 17.408 -78.592 46.643 a 49.51 49.51 0 0 1 -43.264 25.6 a 48.589 48.589 0 0 1 -24.73 -6.861 l -133.58 -79.258 a 50.637 50.637 0 0 1 -23.245 -31.078 a 51.763 51.763 0 0 1 4.967 -38.912 a 94.72 94.72 0 0 0 0 -93.286 a 89.446 89.446 0 0 0 -78.592 -46.644 c -27.392 0 -49.818 -23.04 -49.818 -51.25 v -158.72 c 0 -28.16 22.426 -51.2 49.818 -51.2 c 32.768 0 62.208 -17.46 78.592 -46.695 a 94.72 94.72 0 0 0 0 -93.287 a 51.968 51.968 0 0 1 18.227 -69.939 l 133.53 -79.309 a 48.998 48.998 0 0 1 67.993 18.74 a 89.446 89.446 0 0 0 157.184 0 a 49.05 49.05 0 0 1 68.096 -18.842 l 133.376 79.36 c 23.808 14.131 32 45.517 18.278 69.99 a 94.72 94.72 0 0 0 0 93.287 Z M 512 750.899 A 239.258 239.258 0 0 0 750.95 512 A 239.411 239.411 0 0 0 512 273.05 A 239.36 239.36 0 0 0 273.05 512 A 239.36 239.36 0 0 0 512 750.95 Z" fill="#748696" ></path><path d="M 512 642.406 A 130.611 130.611 0 0 1 381.594 512 A 130.611 130.611 0 0 1 512 381.594 A 130.611 130.611 0 0 1 642.406 512 A 130.56 130.56 0 0 1 512 642.406" fill="#748696" ></path></symbol><symbol id="icon-recycle_bin" viewBox="0 0 1024 1024"><path d="M 609.522 769.748 c -17.717 0 -32.041 -14.324 -32.041 -32.04 v -352.46 c 0 -17.718 14.324 -32.042 32.041 -32.042 c 17.718 0 32.042 14.324 32.042 32.042 v 352.46 c 0 17.716 -14.324 32.04 -32.042 32.04 Z m -192.25 0 c -17.718 0 -32.042 -14.324 -32.041 -32.04 v -352.46 c 0 -17.718 14.323 -32.042 32.041 -32.042 s 32.042 14.324 32.042 32.042 v 352.46 c 0 17.716 -14.324 32.04 -32.042 32.04 Z m 512.669 -544.71 H 769.732 v -64.083 c 0 -52.996 -42.777 -96.125 -95.39 -96.125 H 353.187 c -52.997 0 -96.125 43.129 -96.125 96.125 v 64.084 H 96.853 c -17.717 0 -32.041 14.323 -32.041 32.041 c 0 17.718 14.324 32.042 32.042 32.042 h 833.085 c 17.717 0 32.042 -14.324 32.042 -32.042 c 0 -17.717 -14.322 -32.041 -32.04 -32.041 Z m -608.795 -64.083 c 0 -17.656 14.384 -32.041 32.042 -32.041 H 674.34 c 17.558 0 31.308 14.066 31.308 32.041 v 64.084 H 321.146 v -64.084 Z M 737.82 962 H 289.171 c -53 0 -96.125 -43.127 -96.125 -96.126 V 384.768 c 0 -17.689 14.353 -32.042 32.042 -32.042 c 17.685 0 32.041 14.353 32.041 32.042 v 481.106 c 0 17.687 14.387 32.043 32.042 32.043 h 448.65 c 17.682 0 32.04 -14.356 32.04 -32.043 V 386.081 c 0 -17.688 14.32 -32.042 32.043 -32.042 c 17.718 0 32.041 14.354 32.041 32.042 v 479.792 c 0 53.002 -43.132 96.127 -96.126 96.127 Z" fill="#748696" ></path></symbol><symbol id="icon-draw_trendline" viewBox="0 0 1024 1024"><path d="M714 177.3c-66.8 0-121 54.2-121 121s54.2 121 121 121 121-54.2 121-121-54.2-121-121-121z m-0.1 203.5c-45.7 0-82.7-37-82.7-82.7s37-82.7 82.7-82.7 82.7 37 82.7 82.7-37 82.7-82.7 82.7zM301.8 598.2c-66.8 0-121 54.2-121 121s54.2 121 121 121 121-54.2 121-121-54.2-121-121-121z m-0.1 203.6c-45.7 0-82.7-37-82.7-82.7s37-82.7 82.7-82.7 82.7 37 82.7 82.7-37 82.7-82.7 82.7z" fill="#748696" ></path><path d="M959.5 90.4L806.4 243.5l-26.2-26.2L933.3 64.2zM663.9 386.5L397.3 653.2 371 627l266.7-266.7zM246.3 803.7L90.4 959.6l-26.2-26.3 155.9-155.9z" fill="#748696" ></path></symbol><symbol id="icon-draw_goldensection" viewBox="0 0 1024 1024"><path d="M92.5 184.4h845.2v37.1H92.5zM93 802.4h845.2v37.1H93zM92.8 670.3H938v37.1H92.8zM370.1 578.5c-29.9 17-63.6 25.5-101.2 25.5-43.3 0-78.2-13.7-104.6-41.1-26.5-27.4-39.7-63.9-39.7-109.6 0-46.2 14.6-84.2 43.9-114 29.2-29.8 66.7-44.6 112.4-44.6 32.3 0 59.7 5.2 82.1 15.5v41.7c-24-15.1-52.5-22.6-85.6-22.6-32.6 0-59.4 11.1-80.6 33.4-21.1 22.3-31.7 51.7-31.7 88.1 0 37.5 9.7 66.7 29.2 87.5 19.4 20.9 45.7 31.3 78.8 31.3 22.8 0 42.2-4.4 58.2-13.1v-81h-64.9v-34.2h103.8v137.2z" fill="#748696" ></path></symbol><symbol id="icon-draw_gannfan" viewBox="0 0 1024 1024"><path d="M64 63.9h37.1v895.7H64z" fill="#748696" ></path><path d="M84.475 913.272l849.439-849.44 26.233 26.234-849.439 849.44z" fill="#748696" ></path><path d="M71.998 925.89L943.86 519.35l15.678 33.623-871.86 406.541z" fill="#748696" ></path><path d="M65.179 943.878l406.54-871.861 33.624 15.678-406.54 871.861z" fill="#748696" ></path><path d="M64 922.5h895.7v37.1H64z" fill="#748696" ></path></symbol><symbol id="icon-draw_percentage" viewBox="0 0 1024 1024"><path d="M92 184.4h845.2v37.1H92zM92 802.4h845.2v37.1H92zM92 670.3h845.2v37.1H92zM486.3 508.3h450v37.1h-450zM486.3 346.4h450v37.1h-450zM112.6 378.9c0-22.8 6.1-40.9 18.2-54.3 12.2-13.4 28.5-20.1 49.2-20.1 19.8 0 35.2 6.2 46.3 18.5 11.1 12.3 16.6 29.5 16.6 51.6 0 21.9-6.1 39.7-18.3 53.4-12.2 13.7-28.5 20.5-48.7 20.5-19.2 0-34.5-6.3-46-19.1-11.5-12.7-17.3-29.5-17.3-50.5z m27.7-1.8c0 15.5 3.4 27.4 10.1 35.8 6.7 8.4 15.9 12.6 27.5 12.6 12 0 21.2-4.3 27.8-13 6.5-8.7 9.8-20.9 9.8-36.8 0-15.5-3.2-27.4-9.6-35.9-6.4-8.4-15.4-12.7-27.1-12.7-11.9 0-21.2 4.4-28.1 13.2-6.9 8.9-10.4 21.1-10.4 36.8z m224-68.4L185.4 588.9h-30l178.8-280.2h30.1z m-84.9 213.1c0-22.8 6.1-40.9 18.2-54.5 12.2-13.6 28.5-20.4 49-20.4 19.7 0 35 6.2 46.2 18.6s16.7 29.9 16.7 52.4c0 21.8-6.2 39.5-18.5 53.1-12.3 13.6-28.5 20.4-48.3 20.4-19.3 0-34.7-6.4-46.1-19.3-11.4-12.9-17.2-29.7-17.2-50.3z m27.5-1.6c0 15.1 3.4 26.9 10.1 35.3 6.7 8.4 15.9 12.7 27.5 12.7 12 0 21.2-4.4 27.8-13.1 6.5-8.7 9.8-21 9.8-36.7 0-15.6-3.3-27.5-9.8-35.8-6.5-8.3-15.5-12.4-26.9-12.4-12.2 0-21.7 4.4-28.4 13.2-6.7 8.9-10.1 21.1-10.1 36.8z" fill="#748696" ></path></symbol><symbol id="icon-draw_waveband" viewBox="0 0 1024 1024"><path d="M92 184.4h845.2v37.1H92zM92 802.4h845.2v37.1H92zM92 670.3h845.2v37.1H92zM486.3 508.3h450v37.1h-450zM486.3 346.4h450v37.1h-450zM298.7 607.9h-97.5v-11.2h16.9c6.2 0 10.6-1.3 13.1-3.8s3.7-6.3 3.7-11.3V317.4c0-10-0.6-15.7-1.9-17-1.3-1.3-6.3-1.9-15-1.9-17.5 0-29.7 3.2-36.6 9.7-6.9 6.4-15.3 23.8-25.3 52.2l-11.2-1.9 16.9-71.2H340l15 71.2-9.4 1.9c-10-27.1-17.8-44.1-23.4-51.2-5.6-7.1-17.2-10.6-34.7-10.6-12.5 0-19.4 0.6-20.6 1.9-1.3 1.3-1.9 7.5-1.9 18.8v262.2c0 5 1.6 8.8 4.7 11.3s7.2 3.8 12.2 3.8h16.9v11.3z" fill="#748696" ></path></symbol><symbol id="icon-draw_resline" viewBox="0 0 1024 1024"><path d="M70.768 939.52l622.178-622.178 13.717 13.718L84.486 953.237z" fill="#748696" ></path><path d="M74.678 936.093l773.28-281.432 6.429 17.666L81.107 953.76z" fill="#748696" ></path><path d="M69.06 942.134l286.527-787.281 19.545 7.114-286.527 787.28z" fill="#748696" ></path><path d="M959.7 959.6H64l12-37.1h883.7z" fill="#748696" ></path></symbol><symbol id="icon-draw_text" viewBox="0 0 1024 1024"><path d="M647.5 959.3H375.2v-31.4h47.1c17.4 0 29.6-3.5 36.7-10.6 7-7 10.5-17.5 10.5-31.6V148c0-28.1-1.8-43.9-5.2-47.4-3.5-3.5-17.5-5.3-41.9-5.3-48.9 0-83 9-102.1 27-19.2 18-42.8 66.6-70.7 145.8l-31.4-5.2 47.1-199h497.5l41.9 199-26.2 5.2c-28-75.6-49.7-123.3-65.5-143.1-15.7-19.8-48-29.7-96.9-29.7-34.9 0-54.2 1.8-57.6 5.3-3.5 3.5-5.2 21-5.2 52.6v732.5c0 14.1 4.3 24.5 13.1 31.6 8.7 7 20 10.6 34 10.6h47.1v31.4z" fill="#748696" ></path></symbol><symbol id="icon-draw_parallelchannel" viewBox="0 0 1024 1024"><path d="M242.242 556.785l333.663-324.036 25.847 26.616L268.09 583.4z" fill="#748696" ></path><path d="M643.4 65.9c-66.8 0-121 54.2-121 121s54.2 121 121 121 121-54.2 121-121-54.2-121-121-121z m-0.1 203.5c-45.7 0-82.7-37-82.7-82.7s37-82.7 82.7-82.7 82.7 37 82.7 82.7-37 82.7-82.7 82.7z" fill="#748696" ></path><path d="M801.1 593.9L959.3 442l-25.9-26.6-159.1 153.1c10.2 7 19.2 15.6 26.8 25.4zM603.8 733.9L396.6 933.4l25.4 26.2 206.3-198.2c-9.5-7.9-17.7-17.2-24.5-27.5zM773.4 620.8c9.2 13.3 14.6 29.5 14.6 47 0 45.7-37 82.7-82.7 82.7-18.4 0-35.4-6-49.1-16.2l-27.9 27c20.9 17.3 47.8 27.7 77.1 27.7 66.8 0 121-54.2 121-121 0-27.9-9.4-53.6-25.3-74l-27.7 26.8zM622.5 667.8c0-45.7 37-82.7 82.7-82.7 14.9 0 28.8 3.9 40.8 10.8l28.2-27.4c-19.6-13.6-43.3-21.6-69-21.6-66.8 0-121 54.2-121 121 0 24.3 7.2 46.9 19.5 65.9l28.3-27.5c-6-11.4-9.5-24.6-9.5-38.5z" fill="#748696" ></path><path d="M773.4 620.8l27.8-26.9c-7.6-9.8-16.6-18.4-26.8-25.4l-28.2 27.4c10.8 6.1 20.1 14.7 27.2 24.9zM632.1 706.4l-28.3 27.5c6.7 10.3 15 19.6 24.5 27.4l27.9-27c-10-7.3-18.2-16.9-24.1-27.9zM185.2 522.8c-66.8 0-121 54.2-121 121s54.2 121 121 121 121-54.2 121-121-54.2-121-121-121z m-0.1 203.6c-45.7 0-82.7-37-82.7-82.7s37-82.7 82.7-82.7 82.7 37 82.7 82.7-37 82.7-82.7 82.7z" fill="#748696" ></path></symbol><symbol id="icon-draw_wavemw" viewBox="0 0 1024 1024"><path d="M507.5 269.2L307 826.9h-37.4L63.7 194.5H102l189.5 565.9c15.8-45.6 32-91.3 48.7-137.1 16.7-45.9 32.9-91.9 48.7-138L490 203.7h36.4l200.5 556.8c15.8-46.8 31.9-93.2 48.3-139.4s32.8-92.9 49.2-140.3L923 194.5h37.4l-216 632.4h-34.6L507.5 269.2z" fill="#748696" ></path></symbol><symbol id="icon-draw_triangle" viewBox="0 0 1024 1024"><path d="M185.8 63.9c-66.8 0-121 54.2-121 121s54.2 121 121 121 121-54.2 121-121-54.2-121-121-121z m-0.1 203.5c-45.7 0-82.7-37-82.7-82.7s37-82.7 82.7-82.7 82.7 37 82.7 82.7-37 82.7-82.7 82.7zM838.2 716.7c-66.8 0-121 54.2-121 121s54.2 121 121 121 121-54.2 121-121-54.2-121-121-121z m-0.1 203.5c-45.7 0-82.7-37-82.7-82.7s37-82.7 82.7-82.7 82.7 37 82.7 82.7-37 82.7-82.7 82.7zM186.2 715.6c-66.8 0-121 54.2-121 121s54.2 121 121 121 121-54.2 121-121-54.2-121-121-121z m-0.1 203.5c-45.7 0-82.7-37-82.7-82.7s37-82.7 82.7-82.7 82.7 37 82.7 82.7-37 82.7-82.7 82.7z" fill="#748696" ></path><path d="M287.2 818.1h447.6v37H287.2zM167.319 733.019v-451h37v451zM750.725 776.404L235.673 261.353l26.163-26.163L776.887 750.24z" fill="#748696" ></path></symbol><symbol id="icon-draw_pricechannel" viewBox="0 0 1024 1024"><path d="M189.9 191.4c-47.2 47.2-47.2 123.9 0 171.1s123.9 47.2 171.1 0 47.2-123.9 0-171.1-123.8-47.2-171.1 0z m143.9 144c-32.3 32.3-84.6 32.3-117 0s-32.3-84.6 0-117 84.6-32.3 117 0 32.3 84.7 0 117z" fill="#748696" ></path><path d="M336.266 190.085L462.484 63.867l26.162 26.163L362.43 216.248zM66.391 459.906L190.416 335.88l26.163 26.163L92.554 486.068zM636.5 214.9c-47.2 47.2-47.2 123.9 0 171.1 47.2 47.2 123.9 47.2 171.1 0 47.2-47.2 47.2-123.9 0-171.1-47.3-47.2-123.9-47.2-171.1 0z m143.8 144c-32.3 32.3-84.6 32.3-117 0-32.3-32.3-32.3-84.6 0-117 32.3-32.3 84.6-32.3 117 0s32.3 84.7 0 117zM222.5 630.6c-47.2 47.2-47.2 123.9 0 171.1 47.2 47.2 123.9 47.2 171.1 0 47.2-47.2 47.2-123.9 0-171.1s-123.8-47.3-171.1 0z m143.8 143.9c-32.3 32.3-84.6 32.3-117 0s-32.3-84.6 0-117c32.3-32.3 84.6-32.3 117 0 32.4 32.4 32.4 84.7 0 117z" fill="#748696" ></path><path d="M779.835 216.483l152.31-152.31 26.162 26.164-152.309 152.309zM242.663 805.981L90 958.644l-26.163-26.163L216.5 779.82zM658.982 389.674L388.658 659.998l-26.163-26.163L632.82 363.511zM527.694 931.128l404.178-404.179 26.163 26.163-404.179 404.179z" fill="#748696" ></path></symbol><symbol id="icon-draw_circle" viewBox="0 0 1024 1024"><path d="M532.138 469.26l274.426-274.426 26.163 26.163L558.3 495.423z" fill="#748696" ></path><path d="M697.4 65.9H325.5l-263 263v371.9l263 263h371.9l263-263V328.9l-263-263z m225.5 619.3l-241 241H341l-241-241V344.4l241-241h340.8l241 241v340.8z" fill="#748696" ></path><path d="M511.1 513.2m-121.2 0a121.2 121.2 0 1 0 242.4 0 121.2 121.2 0 1 0-242.4 0Z" fill="#748696" ></path></symbol><symbol id="icon-draw_symangle" viewBox="0 0 1024 1024"><path d="M485.845 771.49l448.302-448.3 26.163 26.162-448.302 448.302z" fill="#748696" ></path><path d="M512.217 797.631L64.764 350.178l26.163-26.162L538.38 771.469z" fill="#748696" ></path><path d="M494.6 226.1v535.7l17.5 35.9 20.7-20.6-1.2-16.1V226.1z" fill="#748696" ></path></symbol><symbol id="icon-draw_hline" viewBox="0 0 1024 1024"><path d="M512.6 390.1c-66.8 0-121 54.2-121 121s54.2 121 121 121 121-54.2 121-121-54.2-121-121-121z m-0.1 203.5c-45.7 0-82.7-37-82.7-82.7s37-82.7 82.7-82.7 82.7 37 82.7 82.7-37 82.7-82.7 82.7z" fill="#748696" ></path><path d="M606 492.6h353.4v37H606zM64.5 492.6h340.1v37H64.5z" fill="#748696" ></path></symbol><symbol id="icon-linear_1" viewBox="0 0 1024 1024"><path d="M804.11648 936.36608l3.54816-848.896 35.84 0.1536-3.54816 848.896z" fill="#748696" ></path><path d="M192.09216 444.73344l625.664-285.22496 14.86336 32.6144-625.664 285.21984zM192.1024 692.5312l625.65888-285.21984 14.86336 32.6144-625.664 285.21984z" fill="#748696" ></path><path d="M180.224 964.096l3.072-876.544h35.84l-2.56 821.248 601.088-273.408 14.848 32.768z" fill="#748696" ></path></symbol><symbol id="icon-linear_2" viewBox="0 0 1024 1024"><path d="M732.22144 923.04384l3.55328-848.896 35.84 0.14848-3.55328 848.896z" fill="#748696" ></path><path d="M120.36096 431.38048l625.664-285.21984 14.86848 32.60928-625.664 285.21984zM120.3712 679.18336l625.65888-285.22496 14.86336 32.6144-625.664 285.21984z" fill="#748696" ></path><path d="M108.544 951.296l2.56-877.056h35.84l-2.56 821.248 601.6-273.408 14.848 32.768z" fill="#748696" ></path><path d="M120.22784 431.1552l780.2368-358.39488 14.95552 32.56832L135.18848 463.7184zM120.22784 678.95296l780.2368-358.38976 14.95552 32.5632L135.18848 711.5264zM119.20384 907.07456l781.04064-357.83168 14.92992 32.58368-781.04064 357.83168z" fill="#748696" ></path></symbol><symbol id="icon-linear_3" viewBox="0 0 1024 1024"><path d="M832.52736 936.62208l3.55328-848.896 35.84 0.1536-3.55328 848.896z" fill="#748696" ></path><path d="M164.096 692.38784l683.19744-285.2608 13.80864 33.0752L177.90464 725.4528z" fill="#748696" ></path><path d="M152.064 936.38144l3.07712-848.896 35.84 0.13312-3.07712 848.896z" fill="#748696" ></path></symbol><symbol id="icon-ruler" viewBox="0 0 1024 1024"><path d="M178.176 316.928h35.84v151.552h-35.84zM390.144 316.928h35.84v151.552h-35.84zM284.16 316.928h35.84v151.552h-35.84zM601.6 316.928h35.84v151.552h-35.84zM495.616 316.928h35.84v151.552h-35.84zM707.584 316.928h35.84v151.552h-35.84zM813.056 316.928h35.84v151.552h-35.84z" fill="#748696" ></path><path d="M973.824 727.04H50.176V296.96h923.136v430.08z m-887.808-35.84h851.456V332.8H86.016v358.4z" fill="#748696" ></path></symbol><symbol id="icon-price_line" viewBox="0 0 1024 1024"><path d="M262.144 663.04c-8.192-38.912-43.008-68.608-84.48-68.608-47.616 0-86.528 38.912-86.528 86.528s38.912 86.528 86.528 86.528c41.472 0 76.288-29.184 84.48-68.608h658.432v-35.84H262.144z m-84.48 77.312c-32.768 0-58.88-26.624-58.88-58.88 0-32.768 26.624-58.88 58.88-58.88 26.624 0 48.64 17.408 56.32 40.96 1.536 5.632 2.56 11.776 2.56 17.92 0 6.144-1.024 12.288-2.56 17.92-7.68 23.552-29.696 40.96-56.32 40.96zM91.648 331.776v-37.888h7.68c24.064 0 41.472-5.12 53.248-15.872 9.728-8.704 14.336-19.456 14.336-31.744h44.544V522.24H157.184V331.776H91.648zM362.496 343.552H309.76c0-38.912 11.776-66.56 35.84-82.432 14.848-10.24 33.28-15.36 54.272-15.36 27.648 0 50.176 7.68 68.096 23.04s26.624 36.864 26.624 64c0 20.992-6.144 39.424-18.432 55.808-8.192 10.752-20.992 22.528-38.912 34.304-11.264 8.192-22.528 15.872-33.792 23.552-15.36 11.264-24.576 20.48-28.16 27.136h119.296v48.128H306.688c0-20.48 3.072-37.376 9.216-50.688 9.216-19.456 27.648-39.424 54.784-58.88 22.528-16.384 36.864-27.136 43.52-33.28 17.408-15.36 26.112-31.232 26.112-48.128 0-10.24-3.072-18.944-8.704-26.624-7.168-8.192-16.896-12.288-29.184-12.288-16.384 0-28.16 6.144-34.304 18.432-3.584 6.656-5.632 17.92-5.632 33.28zM626.688 400.896v-38.912h8.704c12.8 0 22.528-1.536 29.184-5.12 11.264-5.632 16.896-16.384 16.896-32.256 0-8.192-2.048-15.36-5.632-21.504-6.144-9.216-15.36-13.824-28.672-13.824-15.872 0-27.136 6.144-32.768 18.432-3.072 6.656-4.608 15.36-4.608 26.624h-50.688c0-27.136 7.168-48.128 22.016-63.488 15.872-16.384 38.912-25.088 69.12-25.088 22.528 0 40.96 5.632 56.32 16.384 19.456 13.824 29.184 33.792 29.184 60.416 0 12.8-3.584 24.576-10.24 34.304-5.632 8.192-13.312 14.336-22.528 18.432 13.312 5.12 23.552 12.8 30.72 24.064 7.168 11.264 10.752 24.576 10.752 40.96 0 26.112-8.704 47.616-26.112 64-17.408 16.384-39.936 25.088-68.096 25.088-23.04 0-41.984-4.608-57.344-13.824-25.6-14.848-38.4-40.96-38.4-78.336h53.248c-0.512 12.288 1.536 22.016 5.632 29.696 6.656 12.288 17.92 18.432 34.304 18.432 11.776 0 20.992-3.584 28.16-10.752 8.192-8.192 12.288-19.968 12.288-34.816 0-16.384-7.168-27.648-21.504-33.792-8.704-3.584-22.016-5.12-39.936-5.12z" fill="#748696" ></path></symbol><symbol id="icon-vertical_line" viewBox="0 0 1024 1024"><path d="M632.832 512c0-66.56-54.272-120.832-120.832-120.832S391.168 444.928 391.168 512 445.44 632.832 512 632.832s120.832-54.272 120.832-120.832z m-203.264-0.512c0-45.568 36.864-82.944 82.944-82.944s82.944 36.864 82.944 82.944-36.864 82.944-82.944 82.944-82.944-36.864-82.944-82.944z" fill="#748696" ></path><path d="M530.432 605.184v353.28h-36.864v-353.28h36.864z m0-541.696v339.968h-36.864V63.488h36.864z" fill="#748696" ></path></symbol><symbol id="icon-waveruler" viewBox="0 0 1024 1024"><path d="M72.704 210.944H936.96v36.864H72.704zM72.704 343.04H936.96v36.864H72.704zM72.704 475.136H936.96v36.864H72.704z" fill="#748696" ></path><path d="M76.8 872.96l-33.792-11.264c82.432-249.856 173.056-374.272 276.992-380.928 61.44-4.096 105.984 34.816 149.504 72.192 37.888 32.768 73.728 64 116.736 60.928 62.464-4.608 96.256-29.696 178.176-265.216l33.792 11.776c-83.968 242.688-123.904 283.136-209.408 289.28-57.856 4.096-100.864-33.28-142.848-69.632-39.424-34.304-76.8-66.56-123.392-63.488-86.016 5.12-170.496 128.512-245.76 356.352z" fill="#748696" ></path></symbol><symbol id="icon-draw_box" viewBox="0 0 1024 1024"><path d="M84.48 721.408h877.056v69.632H84.48zM920.576 266.24v348.16H125.44V266.24h795.136m40.96-40.96H84.48v430.08h877.056V225.28z" fill="#748696" ></path></symbol><symbol id="icon-draw_head_shoulders_bt" viewBox="0 0 1024 1024"><path d="M626.688 870.4h-1.536c-9.216-1.024-16.896-7.68-18.432-17.408L521.216 298.496 421.376 853.504c-1.536 9.216-9.728 16.384-18.944 16.896-9.216 0.512-17.92-5.632-20.992-14.848l-97.792-329.216-133.12 314.368-37.888-15.872 155.136-367.104c3.584-8.192 11.264-12.8 19.968-12.288 8.704 0.512 15.872 6.144 18.432 14.848l89.6 301.568L502.272 170.496c1.536-9.728 10.24-16.896 20.48-16.896s18.432 7.68 19.968 17.408l91.136 591.36L737.792 445.44c2.56-8.192 10.24-13.824 18.944-14.336 8.704-0.512 16.384 5.12 19.456 13.824l134.656 375.296-38.4 13.824-114.176-319.488-112.128 342.016c-2.56 8.192-10.752 13.824-19.456 13.824z" fill="#748696" ></path></symbol><symbol id="icon-draw_p_rays_lines" viewBox="0 0 1024 1024"><path d="M799.744 403.456c9.216 13.312 14.848 29.696 14.848 47.104 0 45.568-36.864 82.944-82.944 82.944-18.432 0-35.328-6.144-49.152-16.384-10.24-7.168-18.432-16.896-24.064-27.648l-17.92 17.408 17.92-17.408c-6.144-11.264-9.728-24.576-9.728-38.4 0-45.568 36.864-82.944 82.944-82.944 14.848 0 28.672 4.096 40.96 10.752l28.16-27.648c-19.456-13.824-43.52-21.504-69.12-21.504-66.56 0-120.832 54.272-120.832 120.832 0 24.064 7.168 46.592 19.456 66.048l-202.752 196.096c-20.48-16.384-46.592-26.112-75.264-26.112-66.56 0-120.832 54.272-120.832 120.832s53.76 120.832 120.32 120.832 120.832-54.272 120.832-120.832c0-25.088-7.68-48.64-20.992-68.096l202.24-195.584c20.992 17.408 47.616 27.648 77.312 27.648 66.56 0 120.832-54.272 120.832-120.832 0-27.648-9.216-53.76-25.088-74.24l-27.136 27.136z m-448 486.4c-45.568 0-82.944-36.864-82.944-82.944s36.864-82.944 82.944-82.944 82.944 36.864 82.944 82.944-36.864 82.944-82.944 82.944z" fill="#748696" ></path><path d="M827.392 376.832l158.208-152.064-26.112-26.624-159.232 153.088-28.16 27.136c10.752 6.144 19.968 14.848 27.136 25.088l28.16-26.624zM379.904 401.408c0-27.648-9.216-52.736-24.576-73.216l215.04-205.824-25.6-26.624L328.192 302.08c-19.456-13.824-43.52-22.016-69.632-22.016-66.56 0-120.832 54.272-120.832 120.832s54.272 120.832 120.832 120.832 121.344-53.76 121.344-120.32z m-204.288-0.512c0-45.568 36.864-82.944 82.944-82.944s82.944 37.376 82.944 82.944-36.864 82.944-82.944 82.944-82.944-36.864-82.944-82.944z" fill="#748696" ></path></symbol><symbol id="icon-draw_hlinesegment" viewBox="0 0 1024 1024"><path d="M276.992 489.984l471.04 6.656-0.512 37.376-471.04-6.656 0.512-37.376z" fill="#748696" ></path><path d="M926.72 427.008c-40.448-40.448-117.248-54.272-171.008 0-47.104 47.104-47.104 123.904 0 171.008s123.904 47.104 171.008 0 47.616-123.904 0-171.008z m-148.992 143.872c-32.256-32.256-32.256-84.48 0-116.736 32.256-32.256 84.48-32.256 116.736 0 32.256 32.256 32.256 84.48 0 116.736-32.256 32.256-84.48 32.256-116.736 0zM268.288 425.984C221.184 378.88 144.384 378.88 97.28 425.984s-47.104 123.904 0 171.008 123.904 47.104 171.008 0 47.104-123.904 0-171.008z m-143.872 143.872c-32.256-32.256-32.256-84.48 0-116.736 32.256-32.256 84.48-32.256 116.736 0 32.256 32.256 32.256 84.48 0 116.736-32.256 32.256-84.48 32.256-116.736 0z" fill="#748696" ></path></symbol></svg>',function(c){var l=(l=document.getElementsByTagName("script"))[l.length-1],h=l.getAttribute("data-injectcss"),l=l.getAttribute("data-disable-injectsvg");if(!l){var i,a,t,o,s,p=function(l,h){h.parentNode.insertBefore(l,h)};if(h&&!c.__iconfont__svg__cssinject__){c.__iconfont__svg__cssinject__=!0;try{document.write("<style>.svgfont {display: inline-block;width: 1em;height: 1em;fill: currentColor;vertical-align: -0.1em;font-size:16px;}</style>")}catch(l){console&&console.log(l)}}i=function(){var l,h=document.createElement("div");h.innerHTML=c._iconfont_svg_string_4529603,(h=h.getElementsByTagName("svg")[0])&&(h.setAttribute("aria-hidden","true"),h.style.position="absolute",h.style.width=0,h.style.height=0,h.style.overflow="hidden",h=h,(l=document.body).firstChild?p(h,l.firstChild):l.appendChild(h))},document.addEventListener?~["complete","loaded","interactive"].indexOf(document.readyState)?setTimeout(i,0):(a=function(){document.removeEventListener("DOMContentLoaded",a,!1),i()},document.addEventListener("DOMContentLoaded",a,!1)):document.attachEvent&&(t=i,o=c.document,s=!1,z(),o.onreadystatechange=function(){"complete"==o.readyState&&(o.onreadystatechange=null,d())})}function d(){s||(s=!0,t())}function z(){try{o.documentElement.doScroll("left")}catch(l){return void setTimeout(z,50)}d()}}(window);
@@ -5,6 +5,13 @@
5
5
  "css_prefix_text": "icon-",
6
6
  "description": "hqchart画图工具",
7
7
  "glyphs": [
8
+ {
9
+ "icon_id": "27520569",
10
+ "name": "监测",
11
+ "font_class": "jiance",
12
+ "unicode": "e936",
13
+ "unicode_decimal": 59702
14
+ },
8
15
  {
9
16
  "icon_id": "37944385",
10
17
  "name": "图标_十字线",
@@ -59479,6 +59479,8 @@ IChartDrawPicture.ArrayDrawPricture=
59479
59479
 
59480
59480
  { Name:"水平线2", ClassName:"ChartDrawHLine", Create:function() { return new ChartDrawHLine(); }},
59481
59481
 
59482
+ { Name:"MonitorLine", ClassName:"ChartDrawMonitorLine", Create:function() { return new ChartDrawMonitorLine(); }},
59483
+
59482
59484
 
59483
59485
  //trading view样式
59484
59486
  { Name:"Note", ClassName:"ChartDrawNote", Create:function() { return new ChartDrawNote(); } },
@@ -64334,6 +64336,222 @@ function ChartDrawCrosshair()
64334
64336
  }
64335
64337
  }
64336
64338
 
64339
+ //画图工具-监测线
64340
+ function ChartDrawMonitorLine()
64341
+ {
64342
+ this.newMethod=IChartDrawPicture; //派生
64343
+ this.newMethod();
64344
+ delete this.newMethod;
64345
+
64346
+ this.ClassName='ChartDrawMonitorLine';
64347
+ this.PointCount=1;
64348
+ this.IsPointIn=this.IsPointIn_XYValue_Line;
64349
+ this.IsHScreen=false;
64350
+ this.GetXYCoordinate=this.GetXYCoordinate_default;
64351
+ this.FormatLabelTextCallback=null;
64352
+
64353
+ this.LineColor='rgb(255,215,0)'
64354
+ this.LabelConfig=
64355
+ {
64356
+ Font:`${12*GetDevicePixelRatio()}px 微软雅黑`,
64357
+ BGColor:"rgb(30,144,255)", YTextOffset:4,
64358
+ LineColor:"rgba(255,215,0,0.8)",
64359
+ LineDash:[3,5],
64360
+ }
64361
+
64362
+
64363
+ this.SetOption=function(option)
64364
+ {
64365
+ if (option.LineColor) this.LineColor=option.LineColor;
64366
+ if (option.Label)
64367
+ {
64368
+ var item=option.Label;
64369
+ var dest=this.LabelConfig
64370
+ if (item.Font) dest.Font=item.Font;
64371
+ if (item.BGColor) dest.BGColor=item.BGColor;
64372
+ if (item.LineColor) dest.LineColor=item.LineColor;
64373
+ if (item.LineDash) dest.LineDash=item.LineDash;
64374
+ if (IFrameSplitOperator.IsNumber(item.YTextOffset)) dest.YTextOffset=item.YTextOffset;
64375
+ }
64376
+
64377
+ if (option.FormatLabelText) this.FormatLabelTextCallback=option.FormatLabelText;
64378
+ }
64379
+
64380
+ this.Draw=function()
64381
+ {
64382
+ this.LinePoint=[];
64383
+ if (this.IsFrameMinSize()) return;
64384
+ if (!this.IsShow) return;
64385
+
64386
+ if (!this.Frame || !this.Frame.Data) return;
64387
+ var data=this.Frame.Data;
64388
+ if (!IFrameSplitOperator.IsNonEmptyArray(data.Data)) return;
64389
+
64390
+ if (this.Point.length!=1) return;
64391
+ if (this.Value.length!=1) return;
64392
+ this.IsHScreen=this.Frame.IsHScreen;
64393
+ if (this.IsHScreen) return;
64394
+
64395
+ if (this.Status==20) this.DrawMoveLine();
64396
+ else if (this.Status==10) this.DrawMonitorLine(data);
64397
+ }
64398
+
64399
+ this.DrawMoveLine=function()
64400
+ {
64401
+ var border=this.Frame.ChartBorder.GetBorder();
64402
+ var pt=this.Point[0];
64403
+ var x=ToFixedPoint(pt.X);
64404
+ this.ClipFrame();
64405
+
64406
+ this.Canvas.strokeStyle=this.LineColor;
64407
+ this.Canvas.beginPath();
64408
+ this.Canvas.moveTo(x,border.TopEx);
64409
+ this.Canvas.lineTo(x,border.BottomEx);
64410
+ this.Canvas.stroke();
64411
+
64412
+ this.Canvas.restore();
64413
+ }
64414
+
64415
+ this.DrawMonitorLine=function(data)
64416
+ {
64417
+ var isMinute=this.Frame.IsMinuteFrame();
64418
+ var dataWidth=this.Frame.DataWidth;
64419
+ var distanceWidth=this.Frame.DistanceWidth;
64420
+ var xPointCount=this.Frame.XPointCount;
64421
+
64422
+ if (this.IsHScreen)
64423
+ {
64424
+ //var border=this.Frame.ChartBorder.GetHScreenBorder();
64425
+ //var chartright=border.BottomEx;
64426
+ //var xOffset=border.TopEx+distanceWidth/2.0+g_JSChartResource.FrameLeftMargin;
64427
+ }
64428
+ else
64429
+ {
64430
+ var border=this.Frame.ChartBorder.GetBorder();
64431
+ var xOffset=border.LeftEx+distanceWidth/2.0+g_JSChartResource.FrameLeftMargin;
64432
+ var chartright=border.RightEx;
64433
+ }
64434
+
64435
+ var ptData=this.Value[0];
64436
+ this.ClipFrame();
64437
+
64438
+ var labelInfo=null;
64439
+ for(var i=data.DataOffset,j=0;i<data.Data.length && j<xPointCount;++i,++j,xOffset+=(dataWidth+distanceWidth))
64440
+ {
64441
+ var item=data.Data[i];
64442
+
64443
+ if (isMinute)
64444
+ {
64445
+ var x=this.Frame.GetXFromIndex(j);
64446
+ }
64447
+ else
64448
+ {
64449
+ var left=xOffset;
64450
+ var right=xOffset+dataWidth;
64451
+ if (right>chartright) break;
64452
+ var x=left+(right-left)/2;
64453
+ }
64454
+
64455
+ if (i==ptData.XValue) //起始
64456
+ {
64457
+ this.Canvas.strokeStyle=this.LineColor;
64458
+ this.Canvas.beginPath();
64459
+ this.Canvas.moveTo(x,border.TopEx);
64460
+ this.Canvas.lineTo(x,border.BottomEx);
64461
+ this.Canvas.stroke();
64462
+
64463
+ var line={Start:{X:x, Y:border.TopEx}, End:{X:x, Y:border.BottomEx}};
64464
+ this.LinePoint.push(line);
64465
+ }
64466
+ else if (i==data.Data.length-1) //结束
64467
+ {
64468
+ if (this.LabelConfig.LineDash) this.Canvas.setLineDash(this.LabelConfig.LineDash);
64469
+ this.Canvas.strokeStyle=this.LabelConfig.LineColor;
64470
+ this.Canvas.beginPath();
64471
+ this.Canvas.moveTo(x,border.TopEx);
64472
+ this.Canvas.lineTo(x,border.BottomEx);
64473
+ this.Canvas.stroke();
64474
+ if (this.LabelConfig.LineDash) this.Canvas.setLineDash([]);
64475
+
64476
+ labelInfo={ Left:right, Data:data, StartIndex:ptData.XValue, AryText:[] };
64477
+ }
64478
+ }
64479
+
64480
+ this.Canvas.restore();
64481
+
64482
+ if (labelInfo) this.DrawLabel(labelInfo);
64483
+ }
64484
+
64485
+ this.DrawLabel=function(labelInfo)
64486
+ {
64487
+ if (!this.FormatLabelTextCallback) return;
64488
+ this.FormatLabelTextCallback(labelInfo);
64489
+ if (!IFrameSplitOperator.IsNonEmptyArray(labelInfo.AryText)) return;
64490
+ if (!IFrameSplitOperator.IsNumber(labelInfo.YValue)) return;
64491
+
64492
+ /*
64493
+ labelInfo.YValue=7.15;
64494
+ labelInfo.AryText=
64495
+ [
64496
+ { Name:"标题1:", Text:"6666", NameColor:"rgb(255,255,255)", TextColor:"rgb(30,10,30)" },
64497
+ { Name:"标题2:", Text:"08.00", NameColor:"rgb(255,255,255)", TextColor:"rgb(30,10,30)" },
64498
+ { Name:"标题3:", Text:"999.1", NameColor:"rgb(255,255,255)", TextColor:"rgb(30,10,30)" },
64499
+ { Name:"标题4:", Text:"320" , NameColor:"rgb(255,255,255)", TextColor:"rgb(30,10,30)"},
64500
+ { Name:"标题5:", Text:"77775.77", NameColor:"rgb(255,255,255)", TextColor:"rgb(30,10,30)" }
64501
+ ]
64502
+ */
64503
+
64504
+ var y=this.Frame.GetYFromData(labelInfo.YValue,false);
64505
+ this.Canvas.font=this.LabelConfig.Font;
64506
+ this.Canvas.textAlign="left";
64507
+ this.Canvas.textBaseline="top";
64508
+ var lineHeight=this.Canvas.measureText("擎").width+2;
64509
+ var maxWidth=0, lineCount=0;
64510
+ for(var i=0;i<labelInfo.AryText.length;++i)
64511
+ {
64512
+ var item=labelInfo.AryText[i];
64513
+ item.NameWidth=0;
64514
+ item.TextWidth=0;
64515
+ if (item.Name) item.NameWidth=this.Canvas.measureText(item.Name).width+2;
64516
+ if (item.Text) item.TextWidth=this.Canvas.measureText(item.Text).width+2;
64517
+
64518
+ var itemWidth=item.NameWidth+item.TextWidth;
64519
+ if (maxWidth<itemWidth) maxWidth=itemWidth;
64520
+ ++lineCount;
64521
+ }
64522
+
64523
+ var rtBG={ Left:labelInfo.Left+1, Top:y, Width:maxWidth+4, Height:lineHeight*lineCount+4 };
64524
+ rtBG.Right=rtBG.Left+rtBG.Width;
64525
+ rtBG.Bottom=rtBG.Top+rtBG.Height;
64526
+ if (this.LabelConfig.BGColor)
64527
+ {
64528
+ this.Canvas.fillStyle=this.LabelConfig.BGColor
64529
+ this.Canvas.fillRect(ToFixedRect(rtBG.Left),ToFixedRect(rtBG.Top),ToFixedRect(rtBG.Width),ToFixedRect(rtBG.Height));
64530
+ }
64531
+
64532
+ var xText=rtBG.Left+2;
64533
+ var yText=rtBG.Top+this.LabelConfig.YTextOffset;
64534
+ for(var i=0;i<labelInfo.AryText.length;++i)
64535
+ {
64536
+ var item=labelInfo.AryText[i];
64537
+
64538
+ if (item.Name)
64539
+ {
64540
+ this.Canvas.fillStyle=item.NameColor;
64541
+ this.Canvas.fillText(item.Name,xText,yText);
64542
+ }
64543
+
64544
+ if (item.Text)
64545
+ {
64546
+ this.Canvas.fillStyle=item.TextColor;
64547
+ this.Canvas.fillText(item.Text,xText+item.NameWidth ,yText);
64548
+ }
64549
+
64550
+ yText+=lineHeight;
64551
+ }
64552
+ }
64553
+ }
64554
+
64337
64555
  //画图工具-波浪尺
64338
64556
  function ChartDrawWaveRuler()
64339
64557
  {
@@ -132517,7 +132735,7 @@ function ScrollBarBGChart()
132517
132735
 
132518
132736
 
132519
132737
 
132520
- var HQCHART_VERSION="1.1.13310";
132738
+ var HQCHART_VERSION="1.1.13312";
132521
132739
 
132522
132740
  function PrintHQChartVersion()
132523
132741
  {
@@ -5,7 +5,7 @@
5
5
 
6
6
 
7
7
 
8
- var HQCHART_VERSION="1.1.13310";
8
+ var HQCHART_VERSION="1.1.13312";
9
9
 
10
10
  function PrintHQChartVersion()
11
11
  {
@@ -59523,6 +59523,8 @@ IChartDrawPicture.ArrayDrawPricture=
59523
59523
 
59524
59524
  { Name:"水平线2", ClassName:"ChartDrawHLine", Create:function() { return new ChartDrawHLine(); }},
59525
59525
 
59526
+ { Name:"MonitorLine", ClassName:"ChartDrawMonitorLine", Create:function() { return new ChartDrawMonitorLine(); }},
59527
+
59526
59528
 
59527
59529
  //trading view样式
59528
59530
  { Name:"Note", ClassName:"ChartDrawNote", Create:function() { return new ChartDrawNote(); } },
@@ -64378,6 +64380,222 @@ function ChartDrawCrosshair()
64378
64380
  }
64379
64381
  }
64380
64382
 
64383
+ //画图工具-监测线
64384
+ function ChartDrawMonitorLine()
64385
+ {
64386
+ this.newMethod=IChartDrawPicture; //派生
64387
+ this.newMethod();
64388
+ delete this.newMethod;
64389
+
64390
+ this.ClassName='ChartDrawMonitorLine';
64391
+ this.PointCount=1;
64392
+ this.IsPointIn=this.IsPointIn_XYValue_Line;
64393
+ this.IsHScreen=false;
64394
+ this.GetXYCoordinate=this.GetXYCoordinate_default;
64395
+ this.FormatLabelTextCallback=null;
64396
+
64397
+ this.LineColor='rgb(255,215,0)'
64398
+ this.LabelConfig=
64399
+ {
64400
+ Font:`${12*GetDevicePixelRatio()}px 微软雅黑`,
64401
+ BGColor:"rgb(30,144,255)", YTextOffset:4,
64402
+ LineColor:"rgba(255,215,0,0.8)",
64403
+ LineDash:[3,5],
64404
+ }
64405
+
64406
+
64407
+ this.SetOption=function(option)
64408
+ {
64409
+ if (option.LineColor) this.LineColor=option.LineColor;
64410
+ if (option.Label)
64411
+ {
64412
+ var item=option.Label;
64413
+ var dest=this.LabelConfig
64414
+ if (item.Font) dest.Font=item.Font;
64415
+ if (item.BGColor) dest.BGColor=item.BGColor;
64416
+ if (item.LineColor) dest.LineColor=item.LineColor;
64417
+ if (item.LineDash) dest.LineDash=item.LineDash;
64418
+ if (IFrameSplitOperator.IsNumber(item.YTextOffset)) dest.YTextOffset=item.YTextOffset;
64419
+ }
64420
+
64421
+ if (option.FormatLabelText) this.FormatLabelTextCallback=option.FormatLabelText;
64422
+ }
64423
+
64424
+ this.Draw=function()
64425
+ {
64426
+ this.LinePoint=[];
64427
+ if (this.IsFrameMinSize()) return;
64428
+ if (!this.IsShow) return;
64429
+
64430
+ if (!this.Frame || !this.Frame.Data) return;
64431
+ var data=this.Frame.Data;
64432
+ if (!IFrameSplitOperator.IsNonEmptyArray(data.Data)) return;
64433
+
64434
+ if (this.Point.length!=1) return;
64435
+ if (this.Value.length!=1) return;
64436
+ this.IsHScreen=this.Frame.IsHScreen;
64437
+ if (this.IsHScreen) return;
64438
+
64439
+ if (this.Status==20) this.DrawMoveLine();
64440
+ else if (this.Status==10) this.DrawMonitorLine(data);
64441
+ }
64442
+
64443
+ this.DrawMoveLine=function()
64444
+ {
64445
+ var border=this.Frame.ChartBorder.GetBorder();
64446
+ var pt=this.Point[0];
64447
+ var x=ToFixedPoint(pt.X);
64448
+ this.ClipFrame();
64449
+
64450
+ this.Canvas.strokeStyle=this.LineColor;
64451
+ this.Canvas.beginPath();
64452
+ this.Canvas.moveTo(x,border.TopEx);
64453
+ this.Canvas.lineTo(x,border.BottomEx);
64454
+ this.Canvas.stroke();
64455
+
64456
+ this.Canvas.restore();
64457
+ }
64458
+
64459
+ this.DrawMonitorLine=function(data)
64460
+ {
64461
+ var isMinute=this.Frame.IsMinuteFrame();
64462
+ var dataWidth=this.Frame.DataWidth;
64463
+ var distanceWidth=this.Frame.DistanceWidth;
64464
+ var xPointCount=this.Frame.XPointCount;
64465
+
64466
+ if (this.IsHScreen)
64467
+ {
64468
+ //var border=this.Frame.ChartBorder.GetHScreenBorder();
64469
+ //var chartright=border.BottomEx;
64470
+ //var xOffset=border.TopEx+distanceWidth/2.0+g_JSChartResource.FrameLeftMargin;
64471
+ }
64472
+ else
64473
+ {
64474
+ var border=this.Frame.ChartBorder.GetBorder();
64475
+ var xOffset=border.LeftEx+distanceWidth/2.0+g_JSChartResource.FrameLeftMargin;
64476
+ var chartright=border.RightEx;
64477
+ }
64478
+
64479
+ var ptData=this.Value[0];
64480
+ this.ClipFrame();
64481
+
64482
+ var labelInfo=null;
64483
+ for(var i=data.DataOffset,j=0;i<data.Data.length && j<xPointCount;++i,++j,xOffset+=(dataWidth+distanceWidth))
64484
+ {
64485
+ var item=data.Data[i];
64486
+
64487
+ if (isMinute)
64488
+ {
64489
+ var x=this.Frame.GetXFromIndex(j);
64490
+ }
64491
+ else
64492
+ {
64493
+ var left=xOffset;
64494
+ var right=xOffset+dataWidth;
64495
+ if (right>chartright) break;
64496
+ var x=left+(right-left)/2;
64497
+ }
64498
+
64499
+ if (i==ptData.XValue) //起始
64500
+ {
64501
+ this.Canvas.strokeStyle=this.LineColor;
64502
+ this.Canvas.beginPath();
64503
+ this.Canvas.moveTo(x,border.TopEx);
64504
+ this.Canvas.lineTo(x,border.BottomEx);
64505
+ this.Canvas.stroke();
64506
+
64507
+ var line={Start:{X:x, Y:border.TopEx}, End:{X:x, Y:border.BottomEx}};
64508
+ this.LinePoint.push(line);
64509
+ }
64510
+ else if (i==data.Data.length-1) //结束
64511
+ {
64512
+ if (this.LabelConfig.LineDash) this.Canvas.setLineDash(this.LabelConfig.LineDash);
64513
+ this.Canvas.strokeStyle=this.LabelConfig.LineColor;
64514
+ this.Canvas.beginPath();
64515
+ this.Canvas.moveTo(x,border.TopEx);
64516
+ this.Canvas.lineTo(x,border.BottomEx);
64517
+ this.Canvas.stroke();
64518
+ if (this.LabelConfig.LineDash) this.Canvas.setLineDash([]);
64519
+
64520
+ labelInfo={ Left:right, Data:data, StartIndex:ptData.XValue, AryText:[] };
64521
+ }
64522
+ }
64523
+
64524
+ this.Canvas.restore();
64525
+
64526
+ if (labelInfo) this.DrawLabel(labelInfo);
64527
+ }
64528
+
64529
+ this.DrawLabel=function(labelInfo)
64530
+ {
64531
+ if (!this.FormatLabelTextCallback) return;
64532
+ this.FormatLabelTextCallback(labelInfo);
64533
+ if (!IFrameSplitOperator.IsNonEmptyArray(labelInfo.AryText)) return;
64534
+ if (!IFrameSplitOperator.IsNumber(labelInfo.YValue)) return;
64535
+
64536
+ /*
64537
+ labelInfo.YValue=7.15;
64538
+ labelInfo.AryText=
64539
+ [
64540
+ { Name:"标题1:", Text:"6666", NameColor:"rgb(255,255,255)", TextColor:"rgb(30,10,30)" },
64541
+ { Name:"标题2:", Text:"08.00", NameColor:"rgb(255,255,255)", TextColor:"rgb(30,10,30)" },
64542
+ { Name:"标题3:", Text:"999.1", NameColor:"rgb(255,255,255)", TextColor:"rgb(30,10,30)" },
64543
+ { Name:"标题4:", Text:"320" , NameColor:"rgb(255,255,255)", TextColor:"rgb(30,10,30)"},
64544
+ { Name:"标题5:", Text:"77775.77", NameColor:"rgb(255,255,255)", TextColor:"rgb(30,10,30)" }
64545
+ ]
64546
+ */
64547
+
64548
+ var y=this.Frame.GetYFromData(labelInfo.YValue,false);
64549
+ this.Canvas.font=this.LabelConfig.Font;
64550
+ this.Canvas.textAlign="left";
64551
+ this.Canvas.textBaseline="top";
64552
+ var lineHeight=this.Canvas.measureText("擎").width+2;
64553
+ var maxWidth=0, lineCount=0;
64554
+ for(var i=0;i<labelInfo.AryText.length;++i)
64555
+ {
64556
+ var item=labelInfo.AryText[i];
64557
+ item.NameWidth=0;
64558
+ item.TextWidth=0;
64559
+ if (item.Name) item.NameWidth=this.Canvas.measureText(item.Name).width+2;
64560
+ if (item.Text) item.TextWidth=this.Canvas.measureText(item.Text).width+2;
64561
+
64562
+ var itemWidth=item.NameWidth+item.TextWidth;
64563
+ if (maxWidth<itemWidth) maxWidth=itemWidth;
64564
+ ++lineCount;
64565
+ }
64566
+
64567
+ var rtBG={ Left:labelInfo.Left+1, Top:y, Width:maxWidth+4, Height:lineHeight*lineCount+4 };
64568
+ rtBG.Right=rtBG.Left+rtBG.Width;
64569
+ rtBG.Bottom=rtBG.Top+rtBG.Height;
64570
+ if (this.LabelConfig.BGColor)
64571
+ {
64572
+ this.Canvas.fillStyle=this.LabelConfig.BGColor
64573
+ this.Canvas.fillRect(ToFixedRect(rtBG.Left),ToFixedRect(rtBG.Top),ToFixedRect(rtBG.Width),ToFixedRect(rtBG.Height));
64574
+ }
64575
+
64576
+ var xText=rtBG.Left+2;
64577
+ var yText=rtBG.Top+this.LabelConfig.YTextOffset;
64578
+ for(var i=0;i<labelInfo.AryText.length;++i)
64579
+ {
64580
+ var item=labelInfo.AryText[i];
64581
+
64582
+ if (item.Name)
64583
+ {
64584
+ this.Canvas.fillStyle=item.NameColor;
64585
+ this.Canvas.fillText(item.Name,xText,yText);
64586
+ }
64587
+
64588
+ if (item.Text)
64589
+ {
64590
+ this.Canvas.fillStyle=item.TextColor;
64591
+ this.Canvas.fillText(item.Text,xText+item.NameWidth ,yText);
64592
+ }
64593
+
64594
+ yText+=lineHeight;
64595
+ }
64596
+ }
64597
+ }
64598
+
64381
64599
  //画图工具-波浪尺
64382
64600
  function ChartDrawWaveRuler()
64383
64601
  {
@@ -135431,6 +135649,7 @@ function JSDialogDrawTool()
135431
135649
  [
135432
135650
  { Title: '价格范围', ClassName: 'hqchart_drawtool icon-shijianfanwei', Type:0, Data:{ ID:"PriceRange" } },
135433
135651
  { Title: '时间范围', ClassName: 'hqchart_drawtool icon-jiagefanwei', Type:0, Data:{ ID:"DateRange" } },
135652
+ { Title: "监测线", ClassName:"hqchart_drawtool icon-jiance", Type:0, Data:{ ID:"MonitorLine"} },
135434
135653
  ]
135435
135654
  },
135436
135655
  {
@@ -135998,7 +136217,7 @@ function HQChartScriptWorker()
135998
136217
 
135999
136218
 
136000
136219
 
136001
- var HQCHART_VERSION="1.1.13310";
136220
+ var HQCHART_VERSION="1.1.13312";
136002
136221
 
136003
136222
  function PrintHQChartVersion()
136004
136223
  {