Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Flutter/cartesian-charts/axis-customization.md
Original file line number Diff line number Diff line change
Expand Up @@ -239,7 +239,7 @@ Axis labels and ticks can be positioned inside or outside the chart area by usin
child: Container(
child: SfCartesianChart(
primaryXAxis: CategoryAxis(
labelPosition: LabelPosition.inside,
labelPosition: ChartDataLabelPosition.inside,
tickPosition: TickPosition.inside
)
)
Expand Down
2 changes: 1 addition & 1 deletion Flutter/cartesian-charts/marker-datalabel.md
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ The markers can be rendered with desired image as shape. For this you have to sp
isVisible: true,
shape: DataMarkerType.image,
// Renders the image as marker
imageUrl: 'images/livechart.png'
image: const AssetImage('images/livechart.png')
)
)
]
Expand Down
2 changes: 1 addition & 1 deletion Flutter/cartesian-charts/methods.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ The [`show`](https://pub.dev/documentation/syncfusion_flutter_charts/latest/char
TextButton(
child: Text('Show'),
onPressed: show
),s
),
Container(child: chart)
]
)
Expand Down
8 changes: 4 additions & 4 deletions Flutter/cartesian-charts/on-demand-loading.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ The below example demonstrates the infinite scrolling by showing the ci
loadMoreIndicatorBuilder:
(BuildContext context, ChartSwipeDirection direction) =>
getLoadMoreViewBuilder(context, direction),
series: <ChartSeries<SalesData, num>>[
AreaSeries<SalesData, num>(
series: <ChartSeries<ChartData, num>>[
LineSeries<ChartData, num>(
dataSource: chartData,
),
],
Expand All @@ -52,8 +52,8 @@ The below example demonstrates the infinite scrolling by showing the ci
}
}

class SalesData {
SalesData(this.x, this.y);
class ChartData {
ChartData(this.x, this.y);
final num x;
final double? y;
}
Expand Down
2 changes: 1 addition & 1 deletion Flutter/cartesian-charts/tooltip.md
Original file line number Diff line number Diff line change
Expand Up @@ -265,4 +265,4 @@ The ActivationMode enum contains the following values:

{% endhighlight %}

Also refer [`tooltip event`](./events#ontooltiprender) for customizing the tooltip further.
Also refer [`tooltip event`](./callbacks#ontooltiprender) for customizing the tooltip further.
2 changes: 1 addition & 1 deletion Flutter/circular-charts/tooltip.md
Original file line number Diff line number Diff line change
Expand Up @@ -253,4 +253,4 @@ The ActivationMode enum contains the following values:

{% endhighlight %}

Also refer [`tooltip event`](./events#ontooltiprender) for customizing the tooltip further.
Also refer [`tooltip event`](./callbacks#ontooltiprender) for customizing the tooltip further.
2 changes: 1 addition & 1 deletion Flutter/funnel-chart/funnel-customization.md
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ The [`smartLabelMode`](https://pub.dev/documentation/syncfusion_flutter_charts/l
series: FunnelSeries<ChartData, String>(
dataLabelSettings: DataLabelSettings(
isVisible: true,
labelPosition: LabelPosition.inside
labelPosition: ChartDataLabelPosition.inside
),
)
)
Expand Down
2 changes: 1 addition & 1 deletion Flutter/funnel-chart/tooltip.md
Original file line number Diff line number Diff line change
Expand Up @@ -250,4 +250,4 @@ The ActivationMode enum contains the following values:

{% endhighlight %}

Also refer [`tooltip event`](./events#ontooltiprender) for customizing the tooltip further.
Also refer [`tooltip event`](./callbacks#ontooltiprender) for customizing the tooltip further.
2 changes: 1 addition & 1 deletion Flutter/pyramid-chart/pyramid-customization.md
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ The [`smartLabelMode`](https://pub.dev/documentation/syncfusion_flutter_charts/l
series: PyramidSeries<ChartData, String>(
dataLabelSettings: DataLabelSettings(
isVisible: true,
labelPosition: LabelPosition.inside
labelPosition: ChartDataLabelPosition.inside
),
)
)
Expand Down
2 changes: 1 addition & 1 deletion Flutter/pyramid-chart/tooltip.md
Original file line number Diff line number Diff line change
Expand Up @@ -255,4 +255,4 @@ The ActivationMode enum contains the following values:

{% endhighlight %}

Also refer [`tooltip event`](./events#ontooltiprender) for customizing the tooltip further.
Also refer [`tooltip event`](./callbacks#ontooltiprender) for customizing the tooltip further.