hqchart 1.1.15449 → 1.1.15455
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/umychart.vue.js +237 -27
- package/package.json +1 -1
- package/src/jscommon/umychart.PopMinuteChart.js +46 -20
- package/src/jscommon/umychart.StatusBar.js +138 -7
- package/src/jscommon/umychart.StockInfo.js +215 -9
- package/src/jscommon/umychart.js +13 -3
- package/src/jscommon/umychart.style.js +2 -0
- package/src/jscommon/umychart.uniapp.h5/umychart.uniapp.h5.js +16 -4
- package/src/jscommon/umychart.version.js +1 -1
- package/src/jscommon/umychart.vue/umychart.vue.js +3136 -482
|
@@ -1062,6 +1062,8 @@ function GetBlackStyle()
|
|
|
1062
1062
|
//CellMargin:{ Top:5, Bottom:5, YOffset:0, Left:5, Right:5, YOffset:-5 },
|
|
1063
1063
|
},
|
|
1064
1064
|
|
|
1065
|
+
MouseOn:{ BGColor:"rgb(54,54,54)" },
|
|
1066
|
+
|
|
1065
1067
|
UpTextColor:"rgb(238,21,21)", //上涨文字颜色
|
|
1066
1068
|
DownTextColor:"rgb(25,158,0)", //下跌文字颜色
|
|
1067
1069
|
UnchangeTextColor:"rgb(90,90,90)", //平盘文字颜色
|
|
@@ -60922,6 +60922,8 @@ function FrameSplitKLinePriceY()
|
|
|
60922
60922
|
isLast=pageInfo.IsLast;
|
|
60923
60923
|
}
|
|
60924
60924
|
}
|
|
60925
|
+
|
|
60926
|
+
if (!latestItem || !IFrameSplitOperator.IsNumber(latestItem.Close)) return null;
|
|
60925
60927
|
|
|
60926
60928
|
var info=new CoordinateInfo();
|
|
60927
60929
|
info.Type=0;
|
|
@@ -84024,7 +84026,7 @@ function JSChartResource()
|
|
|
84024
84026
|
TitleColor:"rgb(90,90,90)",
|
|
84025
84027
|
VolColor:"rgb(90,90,90)",
|
|
84026
84028
|
Margin:{ Left:0, Top:0, Bottom:0, Right:0 },
|
|
84027
|
-
CellMargin:{ Top:
|
|
84029
|
+
CellMargin:{ Top:3*GetDevicePixelRatio(), Bottom:3*GetDevicePixelRatio(), Left:5*GetDevicePixelRatio(), Right:5*GetDevicePixelRatio(), YOffset:1*GetDevicePixelRatio() },
|
|
84028
84030
|
BottomLine:{ Enable:true, Color:"rgb(192,192,192)"}, //底部分割线
|
|
84029
84031
|
TopLine:{ Enable:false, Color:"rgb(192,192,192)"}, //底部分割线
|
|
84030
84032
|
|
|
@@ -84040,10 +84042,12 @@ function JSChartResource()
|
|
|
84040
84042
|
Font:14*GetDevicePixelRatio() +'px 微软雅黑',
|
|
84041
84043
|
TitleColor:"rgb(90,90,90)",
|
|
84042
84044
|
TextColor:"rgb(90,90,90)",
|
|
84043
|
-
Margin:{ Left:0, Top:
|
|
84044
|
-
CellMargin:{ Top:
|
|
84045
|
+
Margin:{ Left:0, Top:2*GetDevicePixelRatio(), Bottom:0, Right:0 },
|
|
84046
|
+
CellMargin:{ Top:3*GetDevicePixelRatio(), Bottom:3*GetDevicePixelRatio(), Left:5, Right:5, YOffset:1*GetDevicePixelRatio() },
|
|
84045
84047
|
},
|
|
84046
84048
|
|
|
84049
|
+
MouseOn:{ BGColor:"rgb(169,169,169)" },
|
|
84050
|
+
|
|
84047
84051
|
UpTextColor:"rgb(238,21,21)", //上涨文字颜色
|
|
84048
84052
|
DownTextColor:"rgb(25,158,0)", //下跌文字颜色
|
|
84049
84053
|
UnchangeTextColor:"rgb(90,90,90)", //平盘文字颜色
|
|
@@ -85246,6 +85250,12 @@ function JSChartResource()
|
|
|
85246
85250
|
}
|
|
85247
85251
|
}
|
|
85248
85252
|
|
|
85253
|
+
if (style.MouseOn)
|
|
85254
|
+
{
|
|
85255
|
+
var item=style.MouseOn;
|
|
85256
|
+
if (item.BGColor) dest.MouseOn.BGColor=item.BGColor;
|
|
85257
|
+
}
|
|
85258
|
+
|
|
85249
85259
|
if (style.UpTextColor) dest.UpTextColor=style.UpTextColor;
|
|
85250
85260
|
if (style.DownTextColor) dest.DownTextColor=style.DownTextColor;
|
|
85251
85261
|
if (style.UnchangeTextColor) dest.UnchangeTextColor=style.UnchangeTextColor;
|
|
@@ -140070,6 +140080,8 @@ function GetBlackStyle()
|
|
|
140070
140080
|
//CellMargin:{ Top:5, Bottom:5, YOffset:0, Left:5, Right:5, YOffset:-5 },
|
|
140071
140081
|
},
|
|
140072
140082
|
|
|
140083
|
+
MouseOn:{ BGColor:"rgb(54,54,54)" },
|
|
140084
|
+
|
|
140073
140085
|
UpTextColor:"rgb(238,21,21)", //上涨文字颜色
|
|
140074
140086
|
DownTextColor:"rgb(25,158,0)", //下跌文字颜色
|
|
140075
140087
|
UnchangeTextColor:"rgb(90,90,90)", //平盘文字颜色
|
|
@@ -156514,7 +156526,7 @@ function ScrollBarBGChart()
|
|
|
156514
156526
|
|
|
156515
156527
|
|
|
156516
156528
|
|
|
156517
|
-
var HQCHART_VERSION="1.1.
|
|
156529
|
+
var HQCHART_VERSION="1.1.15454";
|
|
156518
156530
|
|
|
156519
156531
|
function PrintHQChartVersion()
|
|
156520
156532
|
{
|