PointRendererElement<D> constructor

PointRendererElement<D>({
  1. DatumPoint<D>? point,
  2. int? index,
  3. Color? color,
  4. Color? fillColor,
  5. double? measureAxisPosition,
  6. required double radiusPx,
  7. required double boundsLineRadiusPx,
  8. required double strokeWidthPx,
  9. String? symbolRendererId,
})

Implementation

PointRendererElement({
  this.point,
  this.index,
  this.color,
  this.fillColor,
  this.measureAxisPosition,
  required this.radiusPx,
  required this.boundsLineRadiusPx,
  required this.strokeWidthPx,
  this.symbolRendererId,
});