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
4 changes: 2 additions & 2 deletions packages/syncfusion_flutter_barcodes/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: syncfusion_flutter_barcodes
description: Flutter Barcodes generator library is used to generate and display data in the machine-readable, industry-standard 1D and 2D barcodes.
version: 20.4.38
version: 21.1.35
homepage: https://github.com/syncfusion/flutter-widgets/tree/master/packages/syncfusion_flutter_barcodes

environment:
Expand All @@ -9,7 +9,7 @@ environment:
dependencies:
flutter:
sdk: flutter
syncfusion_flutter_core: ^20.4.38
syncfusion_flutter_core: ^21.1.35

dev_dependencies:
flutter_test:
Expand Down
12 changes: 6 additions & 6 deletions packages/syncfusion_flutter_calendar/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: syncfusion_flutter_calendar
description: The Flutter Calendar widget has nine built-in configurable views that provide basic functionalities for scheduling and representing appointments/events efficiently.
version: 20.4.38
version: 21.1.35
homepage: https://github.com/syncfusion/flutter-examples

environment:
Expand All @@ -9,17 +9,17 @@ environment:
dependencies:
flutter:
sdk: flutter
timezone: 0.8.0
syncfusion_flutter_core: ^20.4.38
timezone: 0.9.0
syncfusion_flutter_core: ^21.1.35

syncfusion_flutter_datepicker: ^20.4.38
syncfusion_flutter_datepicker: ^21.1.35

intl: ">=0.17.0 <0.20.0"
intl: ">=0.15.0 <0.20.0"

dev_dependencies:
flutter_test:
sdk: flutter

flutter:
assets:
- packages/timezone/data/2020a.tzf
- packages/timezone/data/latest_all.tzf
29 changes: 27 additions & 2 deletions packages/syncfusion_flutter_charts/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,35 @@
## Unreleased

**Bugs**
* #FB40960 - Fixed an issue where the data label template was not updating properly when changing the visible range dynamically.
* #FB41822 - Fixed an issue of the candle series width decreasing when adding the non-rectangular series.

## [20.4.54] - 03/15/2023

**Bugs**
* #FB41625 - Resolved null check exception that occurred when changing the data source of a circular series with a toggled legend.

## [20.4.53] - 03/07/2023

**Bugs**
* #FB40694 - Resolved the range error exception in the FastLineSeries with the floatAllPoints trackball display mode.

## [20.4.50] - 02/14/2023

**Bugs**
* #FB40202 - The builder data labels are not positioned when using multiple series in the SfCartesianChart has been resolved.

## [20.4.43] - 01/10/2023

**Bug**
* #FB39500 - The issue with zooming and panning on the chart not working properly on the macOS trackpad has been resolved.

## [20.3.61] - 12/13/2022
**Bugs**

* #FB37705 - Now, the circular data label builder will render properly with connector lines.

## [20.3.69] - 12/06/2022
## [20.3.60] - 12/06/2022

**Bugs**
* #FB39502 - Now, the series is rendered with both the [primaryXAxis](https://pub.dev/documentation/syncfusion_flutter_charts/latest/charts/SfCartesianChart/primaryXAxis.html) and [primaryYAxis](https://pub.dev/documentation/syncfusion_flutter_charts/latest/charts/SfCartesianChart/primaryYAxis.html) as [LogarithmicAxis](https://pub.dev/documentation/syncfusion_flutter_charts/latest/charts/LogarithmicAxis-class.html).
Expand Down Expand Up @@ -651,4 +676,4 @@ Initial release.
* Line, spline, area, column, bar, bubble, scatter, step line, fast line, pie, doughnut and radial bar chart types.
* Numeric, category and date time axis types.
* User interactive features like zooming and panning, trackball, crosshair, selection and tooltip.
* Additional features like animation, marker, data label, empty points, legend, annotation and much more.
* Additional features like animation, marker, data label, empty points, legend, annotation and much more.
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,9 @@ class CartesianAxisWidget extends StatefulWidget {
/// Creates an instance for cartesian axis widget
// ignore: prefer_const_constructors_in_immutables
CartesianAxisWidget(
{required this.stateProperties, required this.renderType});
{required this.stateProperties,
required this.renderType,
required this.dataLabelTemplateNotifier});

/// Specifies the cartesian state properties
final CartesianStateProperties stateProperties;
Expand All @@ -146,6 +148,9 @@ class CartesianAxisWidget extends StatefulWidget {
// ignore: library_private_types_in_public_api
late _CartesianAxisWidgetState state;

/// Specifies the data label template notifier
ValueNotifier<int> dataLabelTemplateNotifier;

@override
State<StatefulWidget> createState() => _CartesianAxisWidgetState();
}
Expand Down Expand Up @@ -308,6 +313,10 @@ class _CartesianAxisWidgetState extends State<CartesianAxisWidget>
void _repaintAxisElements() {
_animateAxis();
axisRepaintNotifier.value++;
if (animationController.status == AnimationStatus.completed) {
widget.stateProperties.renderingDetails.dataLabelTemplateRegions.clear();
widget.dataLabelTemplateNotifier.value++;
}
}
}

Expand Down
Loading