categoryTrendChartComponent method

Widget categoryTrendChartComponent({
  1. bool solo = true,
})

Render a bar chart showing the user's expenses across different categories within a time period.

This visualization helps users understand their spending patterns across various expense categories.

solo determines whether this component should be rendered as a standalone view.

Implementation

Widget categoryTrendChartComponent({
  bool solo = true,
}) =>
    getView(
      LuneViewType.categoryTrendChart,
      solo: solo,
    );