Skip to content

Commit

Permalink
fix(Highcharts plugin): fix pointFormat in packedbubble tooltip (#324)
Browse files Browse the repository at this point in the history
  • Loading branch information
korvin89 authored Oct 13, 2023
1 parent bfb0c13 commit c24147a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/plugins/highcharts/renderer/helpers/config/config.js
Original file line number Diff line number Diff line change
Expand Up @@ -491,7 +491,7 @@ function getTooltip(tooltip, options, comments, holidays) {
const isDatetimeXAxis = xAxis.options.type === 'datetime';
let json;

if (['pie', 'funnel', 'solidgauge'].includes(serieType)) {
if (['pie', 'funnel', 'solidgauge', 'packedbubble'].includes(serieType)) {
const dataSource = this.point || this.points[0].point;

const precision = isNumber(options.tooltipPercentPrecision)
Expand Down

0 comments on commit c24147a

Please sign in to comment.