Skip to content

Commit

Permalink
ver 14093
Browse files Browse the repository at this point in the history
14091 增加修改指标参数菜单项
14090 指标参数修改样式调整
14089 重构指标参数修改对话框
14088 JSDialogSearchIndex支持新增指标窗口
14086 小程序修正ChartStickLine实心柱子高度<=0,不显示
14085 ChartStickLine修正高度为0时,实心柱子无法显示
  • Loading branch information
jones2000 committed Nov 6, 2024
1 parent 8430060 commit d20be4e
Show file tree
Hide file tree
Showing 14 changed files with 2,172 additions and 1,371 deletions.
391 changes: 121 additions & 270 deletions umychart_uniapp_h5/umychart.uniapp.h5.js

Large diffs are not rendered by default.

389 changes: 120 additions & 269 deletions vuehqchart/src/jscommon/umychart.js

Large diffs are not rendered by default.

126 changes: 126 additions & 0 deletions vuehqchart/src/jscommon/umychart.resource/css/tools.css
Original file line number Diff line number Diff line change
Expand Up @@ -2044,6 +2044,132 @@ input[type="color"] {
}


/*
Copyright (c) 2018 jones
http://www.apache.org/licenses/LICENSE-2.0
开源项目 https://github.com/jones2000/HQChart
[email protected]
内置修改指标参数对话框
*/


.UMyChart_ModifyIndexParam_Dialog_Div
{
font-family: "微软雅黑";
/*display: flex;*/
border: 1px solid;
width:fit-content;
border-color: rgb(204,204,204);
visibility:hidden;
position: absolute;
background-color: rgba(20,20,20,1);
left:1px;
top:1px;
}

.UMyChart_ModifyIndexParam_Title_Div
{
padding-left: 2px;
height:20px;
border-bottom: 1px solid;

display: flex;
cursor: default;
user-select: none;
background-color:rgb(200, 66, 69)
}

.UMyChart_ModifyIndexParam_Name_Div
{
margin-left: 5px;
color:rgb(250,250,250)
}

.UMyChart_ModifyIndexParam_Close_Div
{
margin-left: auto;
padding-right: 4px;
cursor:pointer;
color:rgb(180,180,180)
}

.UMyChart_ModifyIndexParam_Table_Div
{
min-height:100px;
max-height: 500px;
width: 270px;
overflow-y:auto; /*纵向滚动条始终显示 */
}

.UMyChart_ModifyIndexParam_Table
{
border-spacing: 4px;
user-select: none;
font-size:13px;
width: 100%;
}

.UMyChart_ModifyIndexParam_Tbody
{

}

.UMyChart_ModifyIndexParam_Tr
{
height: 25px;
}

.UMyChart_ModifyIndexParam_Name_Td
{
width: 50px;
}


.UMyChart_ModifyIndexParam_Name_Span
{
margin-left: 10px;
}

.UMyChart_ModifyIndexParam_Value_Td
{

}

.UMyChart_ModifyIndexParam_Input
{
margin-left: 10px;
margin-right: 10px;
border:0.5px solid;
line-height: 16px;
background-color: transparent;
width: 60px;
}

.UMyChart_ModifyIndexParam_Button_Div
{
border-top: 1px solid #ccc;
padding: 4px 14px;
display: flex;
justify-content: space-between;
align-items: center;
}

.UMyChart_ModifyIndexParam_Button_Div button
{
font-size: 12px;
padding: 2px 10px 3px;
border-radius: 10px;
border: 1px solid #ccc;
cursor: pointer;
}







Expand Down
2 changes: 1 addition & 1 deletion vuehqchart/src/jscommon/umychart.version.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@



var HQCHART_VERSION="1.1.14083";
var HQCHART_VERSION="1.1.14092";

function PrintHQChartVersion()
{
Expand Down
Loading

0 comments on commit d20be4e

Please sign in to comment.