progress_bar_chart 0.0.8 progress_bar_chart: ^0.0.8 copied to clipboard
A package to display multipe values on a vertical chart using progess indicators and animation.
progress_bar_chart #
A package to display multipe values on a vertical chart using progess indicators and animation. Each value can has a color .
Features #
Without colorblend:
With colorblend:
Usage #
Example
With colorblend:
ProgressBarChart(
height: 30,
values: {
Colors.blue: 0.15,
Colors.green: 0.4,
Colors.red: 0.2,
Colors.yellow: 0.1,
},
borderRadius: 40,
)
Without colorblend:
ProgressBarChart(
height: 30,
values: {
Colors.blue: 0.15,
Colors.green: 0.4,
Colors.red: 0.2,
Colors.yellow: 0.1,
},
borderRadius: 40,
colorBlend: false,
)
Without labels:
ProgressBarChart(
height: 30,
values: {
Colors.blue: 0.15,
Colors.green: 0.4,
Colors.red: 0.2,
Colors.yellow: 0.1,
},
borderRadius: 40,
showLables: false,
)