RangeAnnotationSegment<D> constructor
RangeAnnotationSegment<D> (
- D startValue,
- D endValue,
- RangeAnnotationAxisType axisType, {
- String? axisId,
- Color? color,
- String? startLabel,
- String? endLabel,
- String? middleLabel,
- AnnotationLabelAnchor? labelAnchor,
- AnnotationLabelDirection? labelDirection,
- AnnotationLabelPosition? labelPosition,
- TextStyleSpec? labelStyleSpec,
Implementation
RangeAnnotationSegment(
this.startValue, this.endValue, RangeAnnotationAxisType axisType,
{String? axisId,
Color? color,
String? startLabel,
String? endLabel,
String? middleLabel,
AnnotationLabelAnchor? labelAnchor,
AnnotationLabelDirection? labelDirection,
AnnotationLabelPosition? labelPosition,
TextStyleSpec? labelStyleSpec})
: super(axisType,
axisId: axisId,
color: color,
startLabel: startLabel,
endLabel: endLabel,
middleLabel: middleLabel,
labelAnchor: labelAnchor,
labelDirection: labelDirection,
labelPosition: labelPosition,
labelStyleSpec: labelStyleSpec);