hqchart 1.1.15011 → 1.1.15018
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 +250 -223
- package/package.json +1 -1
- package/src/jscommon/umychart.DialogTooltip.js +158 -2
- package/src/jscommon/umychart.complier.js +94 -0
- package/src/jscommon/umychart.js +517 -4
- package/src/jscommon/umychart.resource/css/tools.css +25 -0
- package/src/jscommon/umychart.style.js +7 -0
- package/src/jscommon/umychart.uniapp.h5/umychart.uniapp.h5.js +619 -5
- package/src/jscommon/umychart.version.js +1 -1
- package/src/jscommon/umychart.vue/umychart.vue.js +777 -7
|
@@ -1999,6 +1999,31 @@ input[type="color"] {
|
|
|
1999
1999
|
}
|
|
2000
2000
|
|
|
2001
2001
|
|
|
2002
|
+
/*
|
|
2003
|
+
小浮窗
|
|
2004
|
+
*/
|
|
2005
|
+
.UMyChart_Small_Tooltip_Div
|
|
2006
|
+
{
|
|
2007
|
+
font-family: "微软雅黑";
|
|
2008
|
+
/*display: flex;*/
|
|
2009
|
+
border: 1px solid;
|
|
2010
|
+
width:fit-content;
|
|
2011
|
+
border-color: rgb(204,204,204);
|
|
2012
|
+
visibility:hidden;
|
|
2013
|
+
position: absolute;
|
|
2014
|
+
background-color: rgba(20,20,20,1);
|
|
2015
|
+
left:1px;
|
|
2016
|
+
top:1px;
|
|
2017
|
+
pointer-events:none;
|
|
2018
|
+
z-index: 99;
|
|
2019
|
+
}
|
|
2020
|
+
|
|
2021
|
+
.UMyChart_Small_Tooltip_Content_Div
|
|
2022
|
+
{
|
|
2023
|
+
color: rgb(230,230,230);
|
|
2024
|
+
margin: 5px 5px 5px 5px;
|
|
2025
|
+
}
|
|
2026
|
+
|
|
2002
2027
|
/*
|
|
2003
2028
|
Copyright (c) 2018 jones
|
|
2004
2029
|
|
|
@@ -691,6 +691,13 @@ function GetBlackStyle()
|
|
|
691
691
|
BGColor:[null, "rgb(42,46,57)"],
|
|
692
692
|
SplitLine:{ Color:'rgb(73,133,231)', Width:1*GetDevicePixelRatio(), Dash:[5*GetDevicePixelRatio(),5*GetDevicePixelRatio()] }
|
|
693
693
|
},
|
|
694
|
+
|
|
695
|
+
KLineCountDownPaint:
|
|
696
|
+
{
|
|
697
|
+
Unchange:{ BGColor:"rgb(190, 190 ,190)", PriceColor:"rgb(0,0,0)", TimeColor:"rgb(50,50,50)" },
|
|
698
|
+
Up:{ BGColor:"rgb(238,21,21)", PriceColor:"rgb(250,250,250)", TimeColor:"rgb(190,190,190)" },
|
|
699
|
+
Down:{ BGColor:"rgb(25,158,0)", PriceColor:"rgb(250,250,250)", TimeColor:"rgb(190,190,190)" },
|
|
700
|
+
},
|
|
694
701
|
|
|
695
702
|
//成交明细
|
|
696
703
|
DealList:
|