We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8630c73 commit 72fc082Copy full SHA for 72fc082
src/components/charts/TimeSeriesChart.tsx
@@ -154,7 +154,7 @@ export function TimeSeriesChart({ metricOptions }: { metricOptions?: MetricOptio
154
const formatted = activeMetric.isCurrency
155
? `$${val.toLocaleString(undefined, { minimumFractionDigits: 2, maximumFractionDigits: 2 })}`
156
: formatCompact(val);
157
- return isSku
+ return hasIcons
158
? `${getGroupIconSvg(group.key, groupByColumn, String(this.color))} ${displayName}: <b>${formatted}</b><br/>`
159
: `<span style="color:${this.color}">●</span> ${displayName}: <b>${formatted}</b><br/>`;
160
},
0 commit comments