graphic 0.1.1
graphic: ^0.1.1 copied to clipboard
A data visualization (charts / chart / charting) library based on Grammar of Graphics.
[examples]
A Flutter data visualization library based on Grammar of Graphics.
Usage #
Installing
Basic example
graphic.Chart(
data: [
{ 'genre': 'Sports', 'sold': 275 },
{ 'genre': 'Strategy', 'sold': 115 },
{ 'genre': 'Action', 'sold': 120 },
{ 'genre': 'Shooter', 'sold': 350 },
{ 'genre': 'Other', 'sold': 150 },
],
scales: {
'genre': graphic.CatScale(
accessor: (map) => map['genre'] as String,
),
'sold': graphic.NumScale(
accessor: (map) => map['sold'] as num,
nice: true,
)
},
geoms: [graphic.IntervalGeom(
position: graphic.PositionAttr(field: 'genre*sold'),
shape: graphic.ShapeAttr(values: [
graphic.Shapes.rrectInterval(radius: Radius.circular(5))
]),
)],
axes: {
'genre': graphic.Defaults.horizontalAxis,
'sold': graphic.Defaults.verticalAxis,
},
)
Document
If you have ever used data visualization libs based on Grammar of Graphics, such as AntV , ggplot2, you can be quite familiar with these concepts.
The document has not been written yet, but by referring to the Example App , I believe you can be smart enough to build your charts :)
TODO #
-
static chart
-
interaction
-
animation
-
legend
-
tooltip
-
annotation
...