Skip to content

Commit

Permalink
Fix #1566
Browse files Browse the repository at this point in the history
  • Loading branch information
AAChartModel committed Aug 27, 2024
1 parent 8131b54 commit 478101e
Showing 1 changed file with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -48,16 +48,16 @@ + (AAOptions *)showTooltipOnlyOnClick {
.eventsSet(AAPointEvents.new
.clickSet(@AAJSFunc(function() {
this.series.chart.update({
tooltip: {
enabled: true
}
tooltip: {
enabled: true
}
});
}))
.mouseOutSet(@AAJSFunc(function() {
this.series.chart.update({
tooltip: {
enabled: false
}
tooltip: {
enabled: false
}
});
}))
))))//设置点击事件
Expand Down

0 comments on commit 478101e

Please sign in to comment.