mrx_charts 0.1.3 copy "mrx_charts: ^0.1.3" to clipboard
mrx_charts: ^0.1.3 copied to clipboard

Simple, high-performance Flutter charts with beautiful animations.

Charts Flutter #

Simple and beautiful smooth animated charts.

Supported charts #

Bar #

Screenshot1

Group bar #

Screenshot2

Candle #

Screenshot3

Line #

Screenshot4

Pie #

Screenshot5

Example #

Check /example folder for more detailed usage

Chart(
  layers: [
    ChartAxisLayer(
      settings: ChartAxisSettings(
        x: ChartAxisSettingsAxis(
          frequency: 1.0,
          max: 13.0,
          min: 7.0,
          textStyle: TextStyle(
            color: Colors.white.withOpacity(0.6),
            fontSize: 10.0,
            ),
          ),
          y: ChartAxisSettingsAxis(
            frequency: 100.0,
            max: 300.0,
            min: 0.0,
            textStyle: TextStyle(
              color: Colors.white.withOpacity(0.6),
              fontSize: 10.0,
            ),
          ),
        ),
        labelX: (value) => value.toInt().toString(),
        labelY: (value) => value.toInt().toString(),
      ),
      ChartBarLayer(
        items: List.generate(
          13 - 7 + 1,
          (index) => ChartBarDataItem(
            color: const Color(0xFF8043F9),
            value: Random().nextInt(280) + 20,
            x: index.toDouble() + 7,
          ),
        ),
        settings: const ChartBarSettings(
          thickness: 8.0,
          radius: BorderRadius.all(Radius.circular(4.0)),
        ),
      ),
    ]
  ],
)

About #

Developed with passion, by Merixstudio developers.

151
likes
140
pub points
90%
popularity

Publisher

verified publishermerixstudio.com

Simple, high-performance Flutter charts with beautiful animations.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (LICENSE)

Dependencies

flutter

More

Packages that depend on mrx_charts