stack_chart 1.1.6 copy "stack_chart: ^1.1.6" to clipboard
stack_chart: ^1.1.6 copied to clipboard

A flutter package for customized stacked chart use within your applications.

example/lib/main.dart

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

/// The main function runs the MacStackedChart widget as the root of the application.
void main() {
  runApp(const MacStackedChart());
}

/// The `MacStackedChart` class is the root widget of the application.
class MacStackedChart extends StatelessWidget {
  const MacStackedChart({super.key});

  /// This widget is the root of your application.
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      debugShowCheckedModeBanner: false,
      title: 'Macincode Stack Chart',
      theme: ThemeData(
        primarySwatch: Colors.blue,
      ),
      home: const MyHomePage(title: 'Home Page'),
    );
  }
}

class MyHomePage extends StatefulWidget {
  /// Default Constructor for MyHomePage Class
  const MyHomePage({super.key, required this.title});
  final String title;

  @override
  State<MyHomePage> createState() => _MyHomePageState();
}

class _MyHomePageState extends State<MyHomePage> {
  List<ChartData> chartData = [
    ChartData("2023-02-12 10:00:00", "2023-02-12 11:00:00", [
      "male",
      "female",
      "male",
      "female",
      "transgender",
      "transgender",
    ]),
    ChartData("2023-02-12 11:00:00", "2023-02-12 12:00:00", [
      "male",
      "female",
      "female",
      "transgender",
      "male",
      "transgender",
    ]),
    ChartData("2023-02-12 12:00:00", "2023-02-12 13:00:00", [
      "male",
      "female",
      "transgender",
      "female",
      "male",
      "transgender",
    ]),
    ChartData("2023-02-12 13:00:00", "2023-02-12 14:00:00", [
      "male",
      "transgender",
      "female",
      "male",
      "female",
      "transgender",
    ]),
    ChartData("2023-02-12 14:00:00", "2023-02-12 15:00:00", [
      "male",
      "female",
      "female",
      "transgender",
      "male",
      "transgender",
    ]),
    ChartData("2023-02-12 15:00:00", "2023-02-12 16:00:00", [
      "male",
      "female",
      "transgender",
      "transgender",
      "male",
      "female",
    ]),
  ];

  /// The code `List<ChartLabel> chartLabel = [ChartLabel("Male", Colors.red),
  /// ChartLabel("Female", Colors.green),
  /// ChartLabel("Transgender", Colors.yellow), ];
  /// ` is creating a list of `ChartLabel` objects.
  ///
  /// Each `ChartLabel` object represents a label for the stack chart
  /// and consists of a label text and a color. In this case, the list contains
  /// three `ChartLabel` objects with labels "Male", "Female", and "Transgender",
  /// and corresponding colors red, green, and yellow respectively. These
  /// labels will be used to display the legend for the stack chart.
  /// dynamicColors: true
  List<ChartLabel> chartLabel = [
    ChartLabel("Male", Colors.red),
    ChartLabel("Female", Colors.green),
    ChartLabel("Transgender", Colors.yellow),
  ];

  ChartText chartText = ChartText("10 Minutes", Colors.amber);

  @override
  Widget build(BuildContext context) {
    return Scaffold(
      appBar: AppBar(
        title: Text(widget.title),
        centerTitle: true,
      ),
      body: Center(
        child: Column(
          mainAxisAlignment: MainAxisAlignment.center,
          children: <Widget>[
            MacStackChart(
              chartTitle: "Stack Chart",
              dateFormat: "h a",
              chartData: chartData,
              chartLabel: chartLabel,
              containerHeight: MediaQuery.of(context).size.height * 0.035,
              containerWidth: MediaQuery.of(context).size.width * 0.05,
              chartText: chartText,
              backgroundColor: Colors.transparent,
              chartBackgroundColor: Colors.white,
              style: const TextStyle(
                color: Colors.black,
                fontSize: 12,
              ),
            ),
          ],
        ),
      ),
    );
  }
}
0
likes
130
pub points
12%
popularity

Publisher

verified publishermacincode.com

A flutter package for customized stacked chart use within your applications.

Homepage
Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (LICENSE)

Dependencies

equatable, flutter, intl, meta, provider, vector_math

More

Packages that depend on stack_chart