Skip to content

Commit

Permalink
[ui] Remove alternateGridColor from drilldown chart
Browse files Browse the repository at this point in the history
  • Loading branch information
hhssb committed Oct 30, 2024
1 parent 514dba9 commit 4969ea4
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions app/src/app/reports/drill-down-chart.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ export const DrillDownChart = ({
_chart.current?.destroy();
_chart.current = chart({
chart: {
height: (BASE_HEIGHT+ROW_HEIGHT*(points?.length ?? 0)),
height: BASE_HEIGHT + ROW_HEIGHT * (points?.length ?? 0),
renderTo: _ref.current,
events: {
drilldown: (e) =>
Expand All @@ -44,10 +44,10 @@ export const DrillDownChart = ({
enabled: true,
format: "{point.y:,.0f}",
style: {
fontWeight: 'normal',
format: '{point.y:,.0f}',
textOutline: 'none',
}
fontWeight: "normal",
format: "{point.y:,.0f}",
textOutline: "none",
},
},
},
},
Expand All @@ -56,7 +56,6 @@ export const DrillDownChart = ({
},
xAxis: {
type: "category",
alternateGridColor: '#e6e6e6',
},
yAxis: {
max: maxTopLevelValue,
Expand Down

0 comments on commit 4969ea4

Please sign in to comment.