mirror of
https://github.com/chillpadclub/bedolaga-cabinet.git
synced 2026-07-30 02:23:47 +00:00
fix: bar chart white hover cursor on dark theme
Recharts BarChart default tooltip cursor renders a white Rectangle on hover which washes out the dark theme. Set cursor fill to grid color with low opacity for a subtle theme-appropriate highlight. Fixes addons "By package" and deposits "By payment method" charts.
This commit is contained in:
@@ -71,6 +71,7 @@ export function SimpleBarChart({
|
|||||||
allowDecimals={false}
|
allowDecimals={false}
|
||||||
/>
|
/>
|
||||||
<Tooltip
|
<Tooltip
|
||||||
|
cursor={{ fill: colors.grid, fillOpacity: 0.3 }}
|
||||||
contentStyle={{
|
contentStyle={{
|
||||||
backgroundColor: colors.tooltipBg,
|
backgroundColor: colors.tooltipBg,
|
||||||
border: `1px solid ${colors.tooltipBorder}`,
|
border: `1px solid ${colors.tooltipBorder}`,
|
||||||
|
|||||||
Reference in New Issue
Block a user