ezio_flutter_charts_package 0.0.1 copy "ezio_flutter_charts_package: ^0.0.1" to clipboard
ezio_flutter_charts_package: ^0.0.1 copied to clipboard

Charts for flutter

COLUMN or LINE charts builder.

""

""

""

Features #

StrokeCap? strokeCap - corner radius of the chart. double? strokeWidth - Width of the chart. Color? color - Color of the chart. String? label - You can add a label to the chart.

Getting started #

pub dependency #

dependencies: ezio_flutter_charts_package: ^0.01

importing #

importing: import 'package:ezio_flutter_charts_package/ezio_flutter_charts_package.dart';

Usage #

example: https://github.com/donrast41/ezio_flutter_charts_package/tree/develop/example

SizedBox(
    height: 600,
    child: ColumnChart(
    color: Colors.purple,
    strokeWidth: 4,
    strokeCap: StrokeCap.butt,
    label: 'Column chart',
    chartPoints: widget.chartPoints,
    axisPoints: widget.axesPoints,
    context: context,
  ),
),

Additional information #

If you want to see source code, go to package git -> https://github.com/donrast41/ezio_flutter_charts_package