ChartTypography constructor

const ChartTypography({
  1. double titleSize = 16,
  2. double subtitleSize = 13,
  3. double axisLabelSize = 11,
  4. double axisTitleSize = 12,
  5. double legendSize = 12,
  6. double tooltipSize = 12,
  7. double dataLabelSize = 10,
  8. String fontFamily = '',
  9. FontWeight titleWeight = FontWeight.w600,
  10. FontWeight labelWeight = FontWeight.w400,
})

Implementation

const ChartTypography({
  this.titleSize = 16,
  this.subtitleSize = 13,
  this.axisLabelSize = 11,
  this.axisTitleSize = 12,
  this.legendSize = 12,
  this.tooltipSize = 12,
  this.dataLabelSize = 10,
  this.fontFamily = '',
  this.titleWeight = FontWeight.w600,
  this.labelWeight = FontWeight.w400,
});