spider_chart 0.1.2 copy "spider_chart: ^0.1.2" to clipboard
spider_chart: ^0.1.2 copied to clipboard

outdated

Spider Chart is a simple spider/radar charting library for Flutter

pub package

spider_chart #

A simple spider/radar chart library for Flutter.

screenshot

Quick Start #

More examples will be added, but this will get you going in the meantime. The chart can be sized with a container or by passing in a Size object to the size named parameter.

Center(
  child: Container(
    width: 300,
    height: 300,
    child: SpiderChart(
      data: [
        7,
        5,
        10,
        7,
        4,
      ],
      maxValue: 10, // the maximum value that you want to represent (essentially sets the data scale of the chart)
      colors: <Color>[
        Colors.red,
        Colors.green,
        Colors.blue,
        Colors.yellow,
        Colors.indigo,
      ],
    ),
  ),
)
29
likes
0
pub points
80%
popularity

Publisher

unverified uploader

Spider Chart is a simple spider/radar charting library for Flutter

Repository (GitLab)
View/report issues

License

unknown (LICENSE)

Dependencies

flutter

More

Packages that depend on spider_chart