hqchart 1.1.12687 → 1.1.12693
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 +94 -50
- package/package.json +1 -1
- package/src/jscommon/umychart.complier.js +3 -1
- package/src/jscommon/umychart.js +394 -109
- package/src/jscommon/umychart.style.js +11 -4
- package/src/jscommon/umychart.uniapp.h5/umychart.uniapp.h5.js +409 -115
- package/src/jscommon/umychart.version.js +1 -1
- package/src/jscommon/umychart.vue/umychart.vue.js +409 -115
- package/src/jscommon/umychart.wechat/umychart.chartframe.wechat.js +12 -1
- package/src/jscommon/umychart.wechat/umychart.wechat.3.0.js +4 -0
|
@@ -106,10 +106,10 @@ function GetBlackStyle()
|
|
|
106
106
|
PositionColor:"rgb(101,104,112)" //持仓
|
|
107
107
|
},
|
|
108
108
|
|
|
109
|
-
FrameBorderPen: "
|
|
109
|
+
FrameBorderPen: "rgb(47,51,62)", //边框
|
|
110
110
|
MultiDayBorderPen:"rgba(236,236,236,0.5)",
|
|
111
111
|
FrameSplitPen: "rgba(236,236,236,0.13)", //分割线
|
|
112
|
-
FrameSplitTextColor: "rgb(
|
|
112
|
+
FrameSplitTextColor: "rgb(220,220,220)", //刻度文字颜色
|
|
113
113
|
FrameSplitTextFont: 12*GetDevicePixelRatio() +"px 微软雅黑", //坐标刻度文字字体
|
|
114
114
|
FrameTitleBGColor: "rgb(0,0,0)", //标题栏背景色
|
|
115
115
|
OverlayIndexTitleBGColor:'rgba(0,0,0,0.7)', //叠加指标背景色
|
|
@@ -125,8 +125,15 @@ function GetBlackStyle()
|
|
|
125
125
|
SplitColor:"rgb(101,104,112)",
|
|
126
126
|
Font:14*GetDevicePixelRatio() +"px 微软雅黑"
|
|
127
127
|
}
|
|
128
|
-
},
|
|
129
|
-
|
|
128
|
+
},
|
|
129
|
+
|
|
130
|
+
//叠加指标框架
|
|
131
|
+
OverlayFrame:
|
|
132
|
+
{
|
|
133
|
+
BolderPen:'rgb(130,130,130)', //指标边框线
|
|
134
|
+
TitleColor:'rgb(181,181,181)', //指标名字颜色
|
|
135
|
+
TitleFont:11*GetDevicePixelRatio() +'px arial', //指标名字字体
|
|
136
|
+
},
|
|
130
137
|
|
|
131
138
|
FrameLatestPrice : {
|
|
132
139
|
TextColor:'rgb(255,255,255)', //最新价格文字颜色
|