Skip to content

Commit

Permalink
ver 13946
Browse files Browse the repository at this point in the history
13945 分时图修正点击模式搜手势操作没有考虑十字光标状态
  • Loading branch information
jones2000 committed Oct 9, 2024
1 parent 4aa9891 commit cac2819
Show file tree
Hide file tree
Showing 8 changed files with 25 additions and 5 deletions.
6 changes: 5 additions & 1 deletion umychart_uniapp_h5/umychart.uniapp.h5.js
Original file line number Diff line number Diff line change
Expand Up @@ -84931,6 +84931,10 @@ function MinuteChartContainer(uielement,offscreenElement,cacheElement)
drag.LastMove.X=touches[0].clientX;
drag.LastMove.Y=touches[0].clientY;
}
else if (this.EnableClickModel && this.ClickModel.IsShowCorssCursor===false)
{
//点击模式 十字光标隐藏 不做任何操作
}
else
{
//上下滚动
Expand Down Expand Up @@ -139084,7 +139088,7 @@ function ScrollBarBGChart()



var HQCHART_VERSION="1.1.13943";
var HQCHART_VERSION="1.1.13945";

function PrintHQChartVersion()
{
Expand Down
4 changes: 4 additions & 0 deletions vuehqchart/src/jscommon/umychart.js
Original file line number Diff line number Diff line change
Expand Up @@ -81006,6 +81006,10 @@ function MinuteChartContainer(uielement,offscreenElement,cacheElement)
drag.LastMove.X=touches[0].clientX;
drag.LastMove.Y=touches[0].clientY;
}
else if (this.EnableClickModel && this.ClickModel.IsShowCorssCursor===false)
{
//点击模式 十字光标隐藏 不做任何操作
}
else
{
//上下滚动
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.13943";
var HQCHART_VERSION="1.1.13945";

function PrintHQChartVersion()
{
Expand Down
6 changes: 5 additions & 1 deletion vuehqchart/src/jscommon/umychart.vue/umychart.vue.js
Original file line number Diff line number Diff line change
Expand Up @@ -84975,6 +84975,10 @@ function MinuteChartContainer(uielement,offscreenElement,cacheElement)
drag.LastMove.X=touches[0].clientX;
drag.LastMove.Y=touches[0].clientY;
}
else if (this.EnableClickModel && this.ClickModel.IsShowCorssCursor===false)
{
//点击模式 十字光标隐藏 不做任何操作
}
else
{
//上下滚动
Expand Down Expand Up @@ -144463,7 +144467,7 @@ function HQChartScriptWorker()



var HQCHART_VERSION="1.1.13943";
var HQCHART_VERSION="1.1.13945";

function PrintHQChartVersion()
{
Expand Down
4 changes: 4 additions & 0 deletions webhqchart.demo/jscommon/umychart.js
Original file line number Diff line number Diff line change
Expand Up @@ -81006,6 +81006,10 @@ function MinuteChartContainer(uielement,offscreenElement,cacheElement)
drag.LastMove.X=touches[0].clientX;
drag.LastMove.Y=touches[0].clientY;
}
else if (this.EnableClickModel && this.ClickModel.IsShowCorssCursor===false)
{
//点击模式 十字光标隐藏 不做任何操作
}
else
{
//上下滚动
Expand Down
2 changes: 1 addition & 1 deletion webhqchart.demo/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.13943";
var HQCHART_VERSION="1.1.13945";

function PrintHQChartVersion()
{
Expand Down
4 changes: 4 additions & 0 deletions webhqchart/umychart.js
Original file line number Diff line number Diff line change
Expand Up @@ -81006,6 +81006,10 @@ function MinuteChartContainer(uielement,offscreenElement,cacheElement)
drag.LastMove.X=touches[0].clientX;
drag.LastMove.Y=touches[0].clientY;
}
else if (this.EnableClickModel && this.ClickModel.IsShowCorssCursor===false)
{
//点击模式 十字光标隐藏 不做任何操作
}
else
{
//上下滚动
Expand Down
2 changes: 1 addition & 1 deletion webhqchart/umychart.version.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@



var HQCHART_VERSION="1.1.13943";
var HQCHART_VERSION="1.1.13945";

function PrintHQChartVersion()
{
Expand Down

0 comments on commit cac2819

Please sign in to comment.