brandTrendChartComponent method

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

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

This visualization helps users understand their spending patterns across various merchants and service providers.

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

Implementation

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