BarDataSet constructor

BarDataSet(
  1. List<BarEntry> yVals,
  2. String label
)

Implementation

BarDataSet(List<BarEntry> yVals, String label) : super(yVals, label) {
  setHighLightColor(const Color.fromARGB(255, 0, 0, 0));
  calcStackSize(yVals);
  calcEntryCountIncludingStacks(yVals);
}