hqchart 1.1.14172 → 1.1.14181
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 +42 -26
- package/package.json +1 -1
- package/src/jscommon/umychart.js +486 -70
- package/src/jscommon/umychart.report.js +4 -0
- package/src/jscommon/umychart.uniapp.h5/umychart.uniapp.h5.js +491 -71
- package/src/jscommon/umychart.version.js +1 -1
- package/src/jscommon/umychart.vue/umychart.vue.js +491 -71
|
@@ -2133,6 +2133,8 @@ function JSReportChartContainer(uielement)
|
|
|
2133
2133
|
|
|
2134
2134
|
this.UIOnMounseOut=function(e)
|
|
2135
2135
|
{
|
|
2136
|
+
this.HideMinuteChartTooltip();
|
|
2137
|
+
|
|
2136
2138
|
var bDraw=false;
|
|
2137
2139
|
var tabChart=this.GetTabChart();
|
|
2138
2140
|
if (tabChart && tabChart.MoveOnTabIndex>=0)
|
|
@@ -2157,6 +2159,8 @@ function JSReportChartContainer(uielement)
|
|
|
2157
2159
|
|
|
2158
2160
|
this.UIOnMouseleave=function(e)
|
|
2159
2161
|
{
|
|
2162
|
+
this.HideMinuteChartTooltip();
|
|
2163
|
+
|
|
2160
2164
|
var tabChart=this.GetTabChart();
|
|
2161
2165
|
if (tabChart && tabChart.MoveOnTabIndex>=0)
|
|
2162
2166
|
{
|