BaseGraphComponent constructor
BaseGraphComponent(
- RenderComponent parent,
- String id, {
- double textMargin = 15,
- double aspectRatio = 1.5,
- double gridLineWidth = 1,
- String gridLineStrokeStyle = '#d7d7d7',
- String labelFillStyle = '#aaaaaa',
- String labelFontStyle = '14px sans-serif',
- String captionBgColor = '#2d2d2d',
- String captionFgColor = 'white',
- String captionFontFamily = 'sans-serif',
- bool drawGridY = false,
Implementation
BaseGraphComponent(super.parent, super.id,
{
this.textMargin = 15,
this.aspectRatio = 1.5,
this.gridLineWidth = 1,
this.gridLineStrokeStyle = '#d7d7d7',
this.labelFillStyle = '#aaaaaa',
this.labelFontStyle = '14px sans-serif',
this.captionBgColor = '#2d2d2d',
this.captionFgColor = 'white',
this.captionFontFamily = 'sans-serif',
this.drawGridY = false,
}) : super.empty();