ChartStyle constructor

ChartStyle({
  1. double pointWidth = 11.0,
  2. double nowPriceLineLength = 1,
  3. double nowPriceLineSpan = 1,
  4. double nowPriceLineWidth = 1,
  5. int gridRows = 4,
  6. int gridColumns = 4,
  7. List<String>? dateTimeFormat,
  8. double dataFontSize = 10,
  9. MainRendererStyle main = const MainRendererStyle(),
  10. SecondaryRendererStyle secondary = const SecondaryRendererStyle(),
  11. VolumeRendererStyle volume = const VolumeRendererStyle(),
  12. ChartSelectStyle select = const ChartSelectStyle(),
  13. DepthColors depth = const DepthColors(),
  14. ChartColors colors = const ChartColors(),
  15. String? fontFamily,
})

Implementation

ChartStyle({
  this.pointWidth = 11.0,
  this.nowPriceLineLength = 1,
  this.nowPriceLineSpan = 1,
  this.nowPriceLineWidth = 1,
  this.gridRows = 4,
  this.gridColumns = 4,
  this.dateTimeFormat,
  this.dataFontSize = 10,
  this.main = const MainRendererStyle(),
  this.secondary = const SecondaryRendererStyle(),
  this.volume = const VolumeRendererStyle(),
  this.select = const ChartSelectStyle(),
  this.depth = const DepthColors(),
  this.colors = const ChartColors(),
  this.fontFamily
});