Marker and data label
9 Apr 2021 / 24 minutes to read
Marker
Markers are used to provide information about the exact point location. You can add a shape to adorn each data point. Markers can be enabled by using the isVisible
property of markerSettings
. You can use the following properties to customize the appearance.
-
color
- used to change the color of the marker shape. -
borderWidth
- used to change the stroke width of the marker shape. -
borderColor
- used to change the stroke color of the marker shape. -
height
- used to change the height of the marker shape. -
width
- used to change the width of the marker shape.
@override
Widget build(BuildContext context) {
return Scaffold(
body: Center(
child: Container(
child: SfCartesianChart(
primaryXAxis: CategoryAxis(),
series: <CartesianSeries>[
LineSeries<ChartData, String>(
dataSource: chartData,
xValueMapper: (ChartData data, _) => data.x,
yValueMapper: (ChartData data, _) => data.y,
// Renders the marker
markerSettings: MarkerSettings(
isVisible: true
)
)
]
)
)
)
);
}
Customizing marker shapes
Markers can be assigned with different shapes using the shape
property. By default, markers are rendered with circle
shape. The available shapes of markers are listed below.
- circle
- rectangle
- image
- pentagon
- verticalLine
- horizontalLine
- diamond
- triangle
- invertedTriangle
@override
Widget build(BuildContext context) {
return Scaffold(
body: Center(
child: Container(
child: SfCartesianChart(
primaryXAxis: CategoryAxis(),
series: <CartesianSeries>[
LineSeries<ChartData, String>(
dataSource: chartData,
xValueMapper: (ChartData data, _) => data.x,
yValueMapper: (ChartData data, _) => data.y,
markerSettings: MarkerSettings(
isVisible: true,
// Marker shape is set to diamond
shape: DataMarkerType.diamond
)
)
]
)
)
)
);
}
Image marker
The markers can be rendered with desired image as shape. For this you have to specify the shape
as image
and refer the image path using imageUrl
property.
@override
Widget build(BuildContext context) {
return Scaffold(
body: Center(
child: Container(
child: SfCartesianChart(
primaryXAxis: CategoryAxis(),
series: <CartesianSeries>[
LineSeries<ChartData, String>(
dataSource: chartData,
xValueMapper: (ChartData data, _) => data.x,
yValueMapper: (ChartData data, _) => data.y,
markerSettings: MarkerSettings(
isVisible: true,
shape: DataMarkerType.image,
// Renders the image as marker
imageUrl: 'images/livechart.png'
)
)
]
)
)
)
);
}
Data label
Data label can be added to a chart series by enabling the isVisible
property in the dataLabelSettings
. You can use the following properties to customize the appearance.
-
color
- used to change the background color of the data label shape. -
borderWidth
- used to change the stroke width of the data label shape. -
borderColor
- used to change the stroke color of the data label shape. -
alignment
- aligns the data label text tonear
,center
andfar
. -
textStyle
- used to change the data label text color, size, font family, font style, and font weight. -
color
- used to change the color of the data label. -
fontFamily
- used to change the font family for the data label. -
fontStyle
- used to change the font style for the data label. -
fontWeight
- used to change the font weight for the data label. -
fontSize
- used to change the font size for the data label. -
margin
- used to change the margin size for data labels. -
opacity
- used to control the transparency of the data label. -
labelAlignment
- used to align the Cartesian data label positions. The available options to customize the positions areouter
,auto
,top
,bottom
andmiddle
. -
borderRadius
- used to add the rounded corners to the data label shape. -
angle
- used to rotate the labels. -
offset
- used to move the data label vertically or horizontally from its position. -
showCumulativeValues
- to show the cumulative values in stacked type series charts. -
labelIntersectAction
- action on data labels intersection. The intersecting data labels can be hidden. -
labelPosition
- position of the data label.
@override
Widget build(BuildContext context) {
return Scaffold(
body: Center(
child: Container(
child: SfCartesianChart(
primaryXAxis: CategoryAxis(),
series: <CartesianSeries>[
LineSeries<ChartData, String>(
dataSource: chartData,
xValueMapper: (ChartData data, _) => data.x,
yValueMapper: (ChartData data, _) => data.y,
dataLabelSettings: DataLabelSettings(
// Renders the data label
isVisible: true
)
)
]
)
)
)
);
}
Formatting label content
Data label considers the format used in the vertical axis by default. In the below code snippet, we have specified format to y-axis and you can see that the same format is applied to the data label.
@override
Widget build(BuildContext context) {
return Scaffold(
body: Center(
child: Container(
child: SfCartesianChart(
// Applies currency format for y axis labels and also for data labels
primaryXAxis: CategoryAxis(),
primaryYAxis: NumericAxis(numberFormat: NumberFormat.simpleCurrency()),
series: <CartesianSeries>[
LineSeries<ChartData, String>(
dataSource: chartData,
color: Colors.red,
xValueMapper: (ChartData data, _) => data.x,
yValueMapper: (ChartData data, _) => data.y,
dataLabelSettings: DataLabelSettings(
isVisible: true
)
)
]
)
)
)
);
}
import
Import the following package to use label format in your package in your application, import "package:intl/intl.dart";
.
Label position
The labelAlignment
property is used to position the Cartesian chart type data labels at top
, bottom
, auto
, outer
and middle
position of the actual data point position. By default, labels are auto
positioned. You can move the labels horizontally and vertically using OffsetX and OffsetY properties respectively.
@override
Widget build(BuildContext context) {
return Scaffold(
body: Center(
child: Container(
child: SfCartesianChart(
primaryXAxis: DateTimeAxis(),
series: <CartesianSeries>[
AreaSeries<ChartData, DateTime>(
dataSource: chartData,
xValueMapper: (ChartData data, _) => data.x,
yValueMapper: (ChartData data, _) => data.y,
dataLabelSettings: DataLabelSettings(
isVisible: true,
// Positioning the data label
labelAlignment: ChartDataLabelAlignment.top
)
)
]
)
)
)
);
}
Apply series color
The useSeriesColor
property is used to apply the series color to background color of the data labels. The default value of this property is false.
@override
Widget build(BuildContext context) {
return Scaffold(
body: Center(
child: Container(
child: SfCartesianChart(
primaryXAxis: DateTimeAxis(),
series: <CartesianSeries>[
AreaSeries<ChartData, DateTime>(
dataSource: chartData,
xValueMapper: (ChartData data, _) => data.x,
yValueMapper: (ChartData data, _) => data.y,
dataLabelSettings: DataLabelSettings(
isVisible: true,
// Positioning the data label
useSeriesColor: true,
)
)
]
)
)
)
);
}
Point text mapping
The dataLabelMapper
property is used to map the text from data source.
@override
Widget build(BuildContext context) {
final List<ChartData> chartData =[
ChartData('jan', 21),
ChartData('feb', 24),
ChartData('mar', 36),
ChartData('apr', 38),
ChartData('may', 54),
ChartData('jun', 57),
ChartData('jul', 70)
];
return Scaffold(
body: Center(
child: Container(
child:SfCartesianChart(
primaryXAxis: CategoryAxis(),
series: <CartesianSeries>[
AreaSeries<ChartData, String>(
dataSource: chartData,
xValueMapper: (ChartData data, _) => data.x,
yValueMapper: (ChartData data, _) => data.y,
// Map the data label text for each point from the data source
dataLabelMapper: (ChartData data, _) => data.x,
dataLabelSettings: DataLabelSettings(
isVisible: true
)
)
]
)
)
)
);
}
class ChartData {
ChartData(this.x, this.y);
final String x;
final double y;
}
Label template
You can customize the appearance of the data label with your own template using the builder
property of dataLabelSettings
.
@override
Widget build(BuildContext context) {
return Scaffold(
body: Center(
child: Container(
child:SfCartesianChart(
series: <CartesianSeries>[
AreaSeries<ChartData, String>(
dataSource: chartData,
xValueMapper: (ChartData data, _) => data.x,
yValueMapper: (ChartData data, _) => data.y,
dataLabelMapper: (ChartData data, _) => data.x,
dataLabelSettings: DataLabelSettings(
isVisible: true,
// Templating the data label
builder: (dynamic data, dynamic point, dynamic series, int pointIndex, int seriesIndex) {
return Container(
height: 30,
width: 30,
child: Image.asset('images/livechart.png')
);
}
)
)
]
)
)
)
);
}
Hide data label for 0 value
Data label and its connector line in the Cartesian charts for the point value 0 can be hidden using the showZeroValue
property. This defaults to true
.
@override
Widget build(BuildContext context) {
return Scaffold(
body: Center(
child:SfCartesianChart(
series: <CartesianSeries<SalesData,num>>[
SplineSeries<SalesData, num>(
dataLabelSettings: DataLabelSettings(
showZeroValue: false,
isVisible: true
),
)
]
)
)
);
}
Data label padding
The offset
property of dataLabelSettings
can be used to add padding for the data label to move it in both vertically and horizontally direction from its position. It takes the logical pixel value for x and y values as input.
NOTE
: This is not applicable for other widgets like Circular, Pyramid and Funnel charts.
Horizontal padding
In Horizontal padding, providing positive value for x moves the data label to right and negative value moves to left.
@override
Widget build(BuildContext context) {
return Scaffold(
body: Center(
child:SfCartesianChart(
series: <CartesianSeries<SalesData,num>>[
SplineSeries<SalesData, num>(
dataLabelSettings: DataLabelSettings(
isVisible: true,
offset: Offset(30, 0),
),
)
]
)
)
);
}
Vertical padding
In Vertical padding, providing positive value for y moves the data label upwards and negative value moves downwards.
@override
Widget build(BuildContext context) {
return Scaffold(
body: Center(
child:SfCartesianChart(
series: <CartesianSeries<SalesData,num>>[
SplineSeries<SalesData, num>(
dataLabelSettings: DataLabelSettings(
isVisible: true,
offset: Offset(0, 30),
),
)
]
)
)
);
}