hqchart 1.1.14056 → 1.1.14072
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 +122 -91
- package/package.json +1 -1
- package/src/jscommon/umychart.DialogSearchIndex.js +603 -0
- package/src/jscommon/umychart.DialogTooltip.js +274 -5
- package/src/jscommon/umychart.js +163 -504
- package/src/jscommon/umychart.resource/css/tools.css +133 -1
- package/src/jscommon/umychart.style.js +11 -0
- package/src/jscommon/umychart.uniapp.h5/umychart.uniapp.h5.js +175 -505
- package/src/jscommon/umychart.version.js +1 -1
- package/src/jscommon/umychart.vue/umychart.vue.js +1052 -510
|
@@ -1873,7 +1873,7 @@ input[type="color"] {
|
|
|
1873
1873
|
|
|
1874
1874
|
.UMyChart_Tooltip_Float_Table
|
|
1875
1875
|
{
|
|
1876
|
-
border-spacing:
|
|
1876
|
+
border-spacing: 3px;
|
|
1877
1877
|
user-select: none;
|
|
1878
1878
|
font-size:12px;
|
|
1879
1879
|
}
|
|
@@ -1892,6 +1892,10 @@ input[type="color"] {
|
|
|
1892
1892
|
{
|
|
1893
1893
|
min-width:80px;
|
|
1894
1894
|
max-width: 500px;
|
|
1895
|
+
|
|
1896
|
+
white-space: nowrap;
|
|
1897
|
+
overflow: hidden;
|
|
1898
|
+
text-overflow: ellipsis;
|
|
1895
1899
|
}
|
|
1896
1900
|
|
|
1897
1901
|
.UMyChart_Tooltip_Float_Title_Span
|
|
@@ -1914,9 +1918,137 @@ input[type="color"] {
|
|
|
1914
1918
|
.UMyChart_Tooltip_Float_Text3_Span
|
|
1915
1919
|
{
|
|
1916
1920
|
margin-left: 5px;
|
|
1921
|
+
|
|
1917
1922
|
}
|
|
1918
1923
|
|
|
1919
1924
|
|
|
1925
|
+
/*
|
|
1926
|
+
Copyright (c) 2018 jones
|
|
1927
|
+
|
|
1928
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
1929
|
+
|
|
1930
|
+
开源项目 https://github.com/jones2000/HQChart
|
|
1931
|
+
|
|
1932
|
+
jones_2000@163.com
|
|
1933
|
+
|
|
1934
|
+
内置搜索指标对话框
|
|
1935
|
+
*/
|
|
1936
|
+
|
|
1937
|
+
|
|
1938
|
+
.UMyChart_SearchIndex_Dialog_Div
|
|
1939
|
+
{
|
|
1940
|
+
font-family: "微软雅黑";
|
|
1941
|
+
/*display: flex;*/
|
|
1942
|
+
border: 1px solid;
|
|
1943
|
+
width:fit-content;
|
|
1944
|
+
border-color: rgb(204,204,204);
|
|
1945
|
+
visibility:hidden;
|
|
1946
|
+
position: absolute;
|
|
1947
|
+
background-color: rgba(20,20,20,1);
|
|
1948
|
+
left:1px;
|
|
1949
|
+
top:1px;
|
|
1950
|
+
}
|
|
1951
|
+
|
|
1952
|
+
.UMyChart_SearchIndex_Title_Div
|
|
1953
|
+
{
|
|
1954
|
+
padding-left: 2px;
|
|
1955
|
+
height:20px;
|
|
1956
|
+
border-bottom: 1px solid;
|
|
1957
|
+
|
|
1958
|
+
display: flex;
|
|
1959
|
+
cursor: default;
|
|
1960
|
+
user-select: none;
|
|
1961
|
+
background-color:rgb(200, 66, 69)
|
|
1962
|
+
}
|
|
1963
|
+
|
|
1964
|
+
.UMyChart_SearchIndex_Name_Div
|
|
1965
|
+
{
|
|
1966
|
+
margin-left: 5px;
|
|
1967
|
+
color:rgb(250,250,250)
|
|
1968
|
+
}
|
|
1969
|
+
|
|
1970
|
+
.UMyChart_SearchIndex_Close_Div
|
|
1971
|
+
{
|
|
1972
|
+
margin-left: auto;
|
|
1973
|
+
padding-right: 4px;
|
|
1974
|
+
cursor:pointer;
|
|
1975
|
+
color:rgb(180,180,180)
|
|
1976
|
+
}
|
|
1977
|
+
|
|
1978
|
+
.UMyChart_SearchIndex_Table_Div
|
|
1979
|
+
{
|
|
1980
|
+
height:300px;
|
|
1981
|
+
width:500px;
|
|
1982
|
+
overflow-y:scroll;
|
|
1983
|
+
}
|
|
1984
|
+
|
|
1985
|
+
.UMyChart_SearchIndex_Table
|
|
1986
|
+
{
|
|
1987
|
+
border-spacing: 4px;
|
|
1988
|
+
user-select: none;
|
|
1989
|
+
font-size:13px;
|
|
1990
|
+
max-height: 300px;
|
|
1991
|
+
}
|
|
1992
|
+
|
|
1993
|
+
.UMyChart_SearchIndex_Group_Tr
|
|
1994
|
+
{
|
|
1995
|
+
height: 25px;
|
|
1996
|
+
}
|
|
1997
|
+
|
|
1998
|
+
.UMyChart_SearchIndex_Text_Td
|
|
1999
|
+
{
|
|
2000
|
+
width: 200px;
|
|
2001
|
+
}
|
|
2002
|
+
|
|
2003
|
+
|
|
2004
|
+
.UMyChart_SearchIndex_Text_Span
|
|
2005
|
+
{
|
|
2006
|
+
margin-left: 2px;
|
|
2007
|
+
margin-right: 10px;
|
|
2008
|
+
cursor: pointer;
|
|
2009
|
+
}
|
|
2010
|
+
|
|
2011
|
+
.UMyChart_SearchIndex_Input
|
|
2012
|
+
{
|
|
2013
|
+
border: none;
|
|
2014
|
+
line-height: 28px;
|
|
2015
|
+
background-color: transparent;
|
|
2016
|
+
width: 99%;
|
|
2017
|
+
margin-left: 10px;
|
|
2018
|
+
}
|
|
2019
|
+
|
|
2020
|
+
.UMyChart_SearchIndex_Container_Div
|
|
2021
|
+
{
|
|
2022
|
+
display: flex;
|
|
2023
|
+
border-top: 1px solid #ccc;
|
|
2024
|
+
}
|
|
2025
|
+
|
|
2026
|
+
.UMyChart_SearchIndex_GroupList_Div
|
|
2027
|
+
{
|
|
2028
|
+
height: 300px;
|
|
2029
|
+
width: 120px;
|
|
2030
|
+
border-right: 1px solid #ccc;
|
|
2031
|
+
font-size: 14px;
|
|
2032
|
+
}
|
|
2033
|
+
|
|
2034
|
+
.UMyChart_SearchIndex_Group_Div
|
|
2035
|
+
{
|
|
2036
|
+
margin: 5px;
|
|
2037
|
+
}
|
|
2038
|
+
|
|
2039
|
+
.UMyChart_SearchIndex_Group_Span
|
|
2040
|
+
{
|
|
2041
|
+
|
|
2042
|
+
margin-left: 5px;
|
|
2043
|
+
cursor: pointer;
|
|
2044
|
+
}
|
|
2045
|
+
|
|
2046
|
+
|
|
2047
|
+
|
|
2048
|
+
|
|
2049
|
+
|
|
2050
|
+
|
|
2051
|
+
|
|
1920
2052
|
|
|
1921
2053
|
|
|
1922
2054
|
|
|
@@ -439,6 +439,17 @@ function GetBlackStyle()
|
|
|
439
439
|
PositionColor:"rgb(255,0,255)" //持仓
|
|
440
440
|
},
|
|
441
441
|
|
|
442
|
+
DialogSearchIndex:
|
|
443
|
+
{
|
|
444
|
+
BGColor:'rgb(20,20,20)', //背景色
|
|
445
|
+
BorderColor:'rgb(170,170,170)', //边框颜色
|
|
446
|
+
TitleColor:'rgb(230,230,230)', //标题颜色
|
|
447
|
+
|
|
448
|
+
IndexNameColor:"rgb(210,210,210)",
|
|
449
|
+
GroupNameColor:"rgb(210,210,210)",
|
|
450
|
+
InputTextColor:"rgb(210,210,210)",
|
|
451
|
+
},
|
|
452
|
+
|
|
442
453
|
DialogPopKeyboard:
|
|
443
454
|
{
|
|
444
455
|
BGColor:'rgb(20,20,20)', //背景色
|