Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

FIX:[DEV-10195] Pie chart: Hover showing wrong decimals #1814

Merged
merged 1 commit into from
Jan 6, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 9 additions & 1 deletion packages/chart/src/hooks/useTooltip.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -143,11 +143,19 @@ export const useTooltip = props => {
})

if (visualizationType === 'Pie') {
const roundTo = Number(config.dataFormat.roundTo) || 0

const degrees = ((arc.endAngle - arc.startAngle) * 180) / Math.PI

// Calculate the percentage of the full circle (360 degrees)
const percentageOfCircle = (degrees / 360) * 100
const roundedPercentage = percentageOfCircle.toFixed(roundTo)

tooltipItems.push(
// ignore
[config.xAxis.dataKey, pieChartData],
[config.runtime.yAxis.dataKey, formatNumber(arc?.data[config.runtime.yAxis.dataKey])],
['Percent', `${Math.round((((arc?.endAngle - arc?.startAngle) * 180) / Math.PI / 360) * 100) + '%'}`]
['Percent', `${roundedPercentage + '%'}`]
)
}

Expand Down
Loading