NumericMultiLevelLabel class

Provides options to customize the start, the end value of a multi-level label, text, and level of the multi-level labels.

The start and end values need to be double type.

Widget build(BuildContext context) {
  return Container(
    child: SfCartesianChart(
      primaryXAxis: NumericAxis(
        multiLevelLabels: const <NumericMultiLevelLabel>[
          NumericMultiLevelLabel(
            start: 0,
            end: 2,
            text: 'First',
          ),
          NumericMultiLevelLabel(
            start: 2,
            end: 4,
            text: 'Second',
          )
        ]
      )
    )
  );
}
Implementers

Constructors

NumericMultiLevelLabel({required double start, required double end, int level = 0, String text = ''})
Constructor for NumericMultiLevelLabel class.
const

Properties

end double
End value of the multi-level label. The value where the multi-level label border needs to end.
finalinherited
hashCode int
The hash code for this object.
no setterinherited
level int
Level specifies in which row the multi-level label should be positioned.
finalinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
start double
Start value of the multi-level label. The value from where the multi-level label border needs to start.
finalinherited
text String
Text to be displayed in grouping label as the multi-level label.
finalinherited

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited