feup_plotter 0.0.5
SDKflutter
Platformandroidioswindowslinuxmacosweb
Flutter library to generate different types of chart. Provides ability to display information in cool and reliable way. Suitable for statistical information, trending data, etc.
FEUP PLOTTER
Getting Started
- Install from pub.deb
flutter pub add feup_plotter
- After that you can use elements everywhere importing in the file:
import 'package:feup_plotter/feup_plotter.dart'
- Data preparation You can plot information for single element of you can make comparison between two elements.
- You need six variables:
- names: describe elements
- colors: array of Color type - to distinguish elements visually
- labels: array string - markers for X axis
- result: int array with values that an element can have based on labels
- appBarBgColor: variable of type Color to define the color of appbar
- screenTitle: String variable with title of screen
- Then call our FeupPlotter widget with these parameter to get everything working.
-
Find example in file: example/lib/main.dart
-
Charts
At moment we support three types of chart:
- Line
- Bar
- Area