Skip to content

Commit

Permalink
ver 14100
Browse files Browse the repository at this point in the history
14099 JSFloatTooltip::Show()修正底部不够显示,导致显示位置错误
  • Loading branch information
jones2000 committed Nov 7, 2024
1 parent 49740ad commit a3eccc8
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion umychart_uniapp_h5/umychart.uniapp.h5.js
Original file line number Diff line number Diff line change
Expand Up @@ -139169,7 +139169,7 @@ function ScrollBarBGChart()



var HQCHART_VERSION="1.1.14096";
var HQCHART_VERSION="1.1.14099";

function PrintHQChartVersion()
{
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.14096";
var HQCHART_VERSION="1.1.14099";

function PrintHQChartVersion()
{
Expand Down
4 changes: 2 additions & 2 deletions vuehqchart/src/jscommon/umychart.vue/umychart.vue.js
Original file line number Diff line number Diff line change
Expand Up @@ -145111,7 +145111,7 @@ function JSFloatTooltip()
var bottom=top+this.DivDialog.offsetHeight;

if ((right+5)>=window.innerWidth) left=left-this.DivDialog.offsetWidth;
if ((bottom+5)>=window.innerHeight) top=0;
if ((bottom+5)>=window.innerHeight) top=window.innerHeight-this.DivDialog.offsetHeight-5;

this.DivDialog.style.top = top + "px";
this.DivDialog.style.left = left + "px";
Expand Down Expand Up @@ -148157,7 +148157,7 @@ function HQChartScriptWorker()



var HQCHART_VERSION="1.1.14096";
var HQCHART_VERSION="1.1.14099";

function PrintHQChartVersion()
{
Expand Down
2 changes: 1 addition & 1 deletion webhqchart.demo/jscommon/umychart.DialogTooltip.js
Original file line number Diff line number Diff line change
Expand Up @@ -1012,7 +1012,7 @@ function JSFloatTooltip()
var bottom=top+this.DivDialog.offsetHeight;

if ((right+5)>=window.innerWidth) left=left-this.DivDialog.offsetWidth;
if ((bottom+5)>=window.innerHeight) top=0;
if ((bottom+5)>=window.innerHeight) top=window.innerHeight-this.DivDialog.offsetHeight-5;

this.DivDialog.style.top = top + "px";
this.DivDialog.style.left = left + "px";
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.14096";
var HQCHART_VERSION="1.1.14099";

function PrintHQChartVersion()
{
Expand Down
2 changes: 1 addition & 1 deletion webhqchart/umychart.DialogTooltip.js
Original file line number Diff line number Diff line change
Expand Up @@ -1012,7 +1012,7 @@ function JSFloatTooltip()
var bottom=top+this.DivDialog.offsetHeight;

if ((right+5)>=window.innerWidth) left=left-this.DivDialog.offsetWidth;
if ((bottom+5)>=window.innerHeight) top=0;
if ((bottom+5)>=window.innerHeight) top=window.innerHeight-this.DivDialog.offsetHeight-5;

this.DivDialog.style.top = top + "px";
this.DivDialog.style.left = left + "px";
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.14096";
var HQCHART_VERSION="1.1.14099";

function PrintHQChartVersion()
{
Expand Down

0 comments on commit a3eccc8

Please sign in to comment.