0 purchases
simple lane chart
Simple lane chart #
Compare charts #
Comparing 2 charts between themselves.
Container(
padding: EdgeInsets.symmetric(horizontal: 15),
child: SimpleLaneChart(
<firstValue>,
<secondValue>,
height: 20,
),
),
copied to clipboard
Chart 100% #
Comparing from 100%.
Important you should use parameter "calFrom100Perc = true", and second value should be total value.
Container(
padding: EdgeInsets.symmetric(horizontal: 15),
child: SimpleLaneChart(
<firstValue>,
<totalValue>,
calFrom100Perc: true,
bgColor: Colors.deepOrange.withOpacity(0.3),
color: Colors.deepOrange,
height: 20,
),
),
copied to clipboard
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.