multi_charts 0.1.0 copy "multi_charts: ^0.1.0" to clipboard
multi_charts: ^0.1.0 copied to clipboard

outdated

A Flutter package providing different types of charts built purely in dart.

example/lib/main.dart

import 'package:flutter/material.dart';
import 'package:multi_charts/multi_charts.dart';

void main() => runApp(MyApp());

class MyApp extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Radar Chart Demo',
      theme: ThemeData(
        primarySwatch: Colors.blue,
      ),
      home: Scaffold(
        appBar: AppBar(
          title: Text("Radar Chart Example"),
        ),
        body: Center(
          child: Container(
            width: 450,
            height: 450,
            child: RadarChart(
              values: [1, 2, 4, 7, 9, 0, 6],
              labels: [
                "Label1",
                "Label2",
                "Label3",
                "Label4",
                "Label5",
                "Label6",
                "Label7",
              ],
              maxValue: 10,
              fillColor: Colors.blue,
            ),
          ),
        ),
      ),
    );
  }
}
31
likes
0
pub points
84%
popularity

Publisher

unverified uploader

A Flutter package providing different types of charts built purely in dart.

Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

flutter

More

Packages that depend on multi_charts