You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: Flutter/cartesian-charts/axis-customization.md
+12-13Lines changed: 12 additions & 13 deletions
Original file line number
Diff line number
Diff line change
@@ -534,9 +534,9 @@ By default, a maximum of 3 labels are displayed for each 100 logical pixels in a
534
534
{% endhighlight %}
535
535
{% endtabs %}
536
536
537
-
### Visible minimum
537
+
### Initial visible minimum
538
538
539
-
The [`visibleMinimum`](https://pub.dev/documentation/syncfusion_flutter_charts/latest/charts/NumericAxis/visibleMinimum.html) property is used to set the minimum visible range of an axis. When panning is enabled, you can pan to the actual minimum range of an axis.
539
+
The [`initialVisibleMinimum`](https://pub.dev/documentation/syncfusion_flutter_charts/latest/charts/NumericAxis/initiaVisibleMinimum.html) property defines the lowest data point initially displayed on an axis. When panning is enabled, you can pan to the actual minimum range of an axis. This property only works at load time. Use the controller to programmatically change the visible minimum.
540
540
541
541
{% tabs %}
542
542
{% highlight dart hl_lines="8" %}
@@ -548,7 +548,7 @@ The [`visibleMinimum`](https://pub.dev/documentation/syncfusion_flutter_charts/l
548
548
child: Container(
549
549
child: SfCartesianChart(
550
550
primaryXAxis: NumericAxis(
551
-
visibleMinimum: 2
551
+
initialVisibleMinimum: 2
552
552
)
553
553
)
554
554
)
@@ -561,9 +561,9 @@ The [`visibleMinimum`](https://pub.dev/documentation/syncfusion_flutter_charts/l
561
561
562
562
Also refer [`minimum`](./axis-types) and [`maximum`](./axis-types) range of an axis.
563
563
564
-
### Visible maximum
564
+
### Initial visible maximum
565
565
566
-
The [`visibleMaximum`](https://pub.dev/documentation/syncfusion_flutter_charts/latest/charts/NumericAxis/visibleMaximum.html) property is used to set the minimum visible range of an axis. When panning is enabled, you can pan to the actual maximum range of an axis.
566
+
The [`visibleMaximum`](https://pub.dev/documentation/syncfusion_flutter_charts/latest/charts/NumericAxis/initialVisibleMaximum.html) property defines the highest data point finally displayed on an axis. When panning is enabled, you can pan to the actual maximum range of an axis. This property only works at load time. Use the controller to programmatically change the visible maximum.
567
567
568
568
{% tabs %}
569
569
{% highlight dart hl_lines="8" %}
@@ -575,7 +575,7 @@ The [`visibleMaximum`](https://pub.dev/documentation/syncfusion_flutter_charts/l
575
575
child: Container(
576
576
child: SfCartesianChart(
577
577
primaryXAxis: NumericAxis(
578
-
visibleMaximum: 4
578
+
initialVisibleMaximum: 4
579
579
)
580
580
)
581
581
)
@@ -1164,7 +1164,7 @@ If it is a horizontal axis, aligns the labels after the gridline and if it is a
1164
1164
## Auto range calculation
1165
1165
Determines the value axis range, based on the visible data points or based on the overall data points available in chart.
1166
1166
1167
-
By default, value axis range will be calculated automatically based on the visible data points on dynamic changes. The visible data points are changed on performing interactions like pinch zooming, selection zooming, panning and also on specifying [`visibleMinimum`](https://pub.dev/documentation/syncfusion_flutter_charts/latest/charts/NumericAxis/visibleMinimum.html) and [`visibleMaximum`](https://pub.dev/documentation/syncfusion_flutter_charts/latest/charts/NumericAxis/visibleMaximum.html) values.
1167
+
By default, value axis range will be calculated automatically based on the visible data points on dynamic changes. The visible data points are changed on performing interactions like pinch zooming, selection zooming, panning and also on specifying [`initialVisibleMinimum`](https://pub.dev/documentation/syncfusion_flutter_charts/latest/charts/NumericAxis/initialVisibleMinimum.html) and [`initialVisibleMaximum`](https://pub.dev/documentation/syncfusion_flutter_charts/latest/charts/NumericAxis/initialVisibleMaximum.html) values.
1168
1168
1169
1169
To toggle this functionality, [`anchorRangeToVisiblePoints`](https://pub.dev/documentation/syncfusion_flutter_charts/latest/charts/ChartAxis/anchorRangeToVisiblePoints.html) property can be used. i.e. on setting this property to false, the value axis range will be calculated based on all the data points in chart irrespective of visible points.
1170
1170
@@ -1302,9 +1302,10 @@ In [`DateTimeAxis`](https://pub.dev/documentation/syncfusion_flutter_charts/late
1302
1302
1303
1303
## RangeController
1304
1304
1305
-
The [`rangeController`](https://pub.dev/documentation/syncfusion_flutter_charts/latest/charts/ChartAxis/rangeController.html) property is used to set the maximum and minimum values for the chart in the viewport. In the minimum and maximum properties of the axis, you can specify the minimum and maximum values with respect to the entire data source. In the visibleMinimum and visibleMaximum properties, you can specify the values to be viewed in the viewed port i.e. range controller's start and end values respectively.
1305
+
The [`rangeController`](https://pub.dev/documentation/syncfusion_flutter_charts/latest/charts/ChartAxis/rangeController.html) property defines the lowest and highest data points that are displayed on an axis.
1306
+
If the same [RangeController] instance is used in both the chart axis and the [RangeSelector], the chart's visible range will be updated based on the range selected in the [RangeSelector].
1306
1307
1307
-
Here you need to specify the [`minimum`](https://pub.dev/documentation/syncfusion_flutter_charts/latest/charts/DateTimeAxis/minimum.html), [`maximum`](https://pub.dev/documentation/syncfusion_flutter_charts/latest/charts/DateTimeAxis/maximum.html), [`visibleMinimum`](https://pub.dev/documentation/syncfusion_flutter_charts/latest/charts/DateTimeAxis/visibleMinimum.html), and [`visibleMaximum`](https://pub.dev/documentation/syncfusion_flutter_charts/latest/charts/DateTimeAxis/visibleMaximum.html) properties to the axis and the axis values will be visible with respect to visibleMinimum and visibleMaximum properties.
1308
+
Here you need to specify the [`minimum`](https://pub.dev/documentation/syncfusion_flutter_charts/latest/charts/DateTimeAxis/minimum.html), [`maximum`](https://pub.dev/documentation/syncfusion_flutter_charts/latest/charts/DateTimeAxis/maximum.html), [`initialVisibleMinimum`](https://pub.dev/documentation/syncfusion_flutter_charts/latest/charts/DateTimeAxis/initialVisibleMinimum.html), and [`initialVisibleMaximum`](https://pub.dev/documentation/syncfusion_flutter_charts/latest/charts/DateTimeAxis/initiaVisibleMaximum.html) properties to the axis and the axis values will be visible with respect to initialVisibleMinimum and initialVisibleMaximum properties.
1308
1309
1309
1310
{% tabs %}
1310
1311
{% highlight dart %}
@@ -1335,10 +1336,8 @@ Here you need to specify the [`minimum`](https://pub.dev/documentation/syncfusio
@@ -1884,7 +1883,7 @@ The different types of multi-level label's border are mentioned below,
1884
1883
1885
1884
#### See Also
1886
1885
1887
-
*[Rendering a particular part of a data using visible minimum and visible maximum in the Cartesian chart](https://support.syncfusion.com/kb/article/9809/how-to-render-particular-part-of-a-data-in-cartesian-charts-sfcartesianchart).
1886
+
*[Rendering a particular part of a data in the Cartesian chart](https://support.syncfusion.com/kb/article/9809/how-to-render-particular-part-of-a-data-in-cartesian-charts-sfcartesianchart).
1888
1887
1889
1888
*[Creating a flutter master-detail chart using range controller in the Cartesian chart](https://support.syncfusion.com/kb/article/10796/how-to-create-flutter-master-detail-chart-using-the-cartesian-charts-widget).
Copy file name to clipboardExpand all lines: Flutter/cartesian-charts/callbacks.md
+73-2Lines changed: 73 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -726,9 +726,12 @@ Triggers when the trendline gets rendered. The [`onRenderDetailsUpdate`](https:/
726
726
>**Note**
727
727
* The slope values of the polynomial trendline type will depend on the polynomial order. The intercept, slope, and rSquaredValue are not applicable for moving average trendline type.
728
728
729
-
## onRendererCreated
729
+
## onRendererCreated (Series)
730
730
731
-
Triggers when the series renderer is created. This callback can be used to obtain the [`ChartSeriesController`](https://pub.dev/documentation/syncfusion_flutter_charts/latest/charts/ChartSeriesController-class.html) instance, which is used to access the the public methods in the series.
731
+
Triggers when the series renderer is created. This callback can be used to obtain the [`ChartSeriesController`](https://pub.dev/documentation/syncfusion_flutter_charts/latest/charts/ChartSeriesController-class.html) instance, which is used to:
732
+
* Add, remove, or replace the data points programmatically.
733
+
* pixelToPoint and pointToPixel conversions.
734
+
* Restart the loading animation.
732
735
733
736
{% tabs %}
734
737
{% highlight dart %}
@@ -792,6 +795,74 @@ Triggers when the series renderer is created. This callback can be used to obtai
792
795
{% endhighlight %}
793
796
{% endtabs %}
794
797
798
+
## onRendererCreated (Axis)
799
+
800
+
Triggers when the axis renderer is created and attached to its parent. It can be used to obtain the axis-wise [AxisController] which has the current visible range details and provides an option to change the visible range programmatically. Here, you can customize the following properties.
801
+
802
+
*[`visibleMinimum`] - to gets and sets the visible minimum of the axis.
803
+
*[`visibleMaximum`] - to gets and sets the visible maximum of the axis.
804
+
*[`zoomFactor`] - to gets and sets the zoom factor of the axis.
805
+
*[`zoomPosition`] - to gets and sets the zoom position of the axis.
806
+
*[`previousZoomFactor`] - to gets the previous zoom factor of the axis.
807
+
*[`previousZoomPosition`] - to gets the previous zoom position of the axis.
Triggers when touched or clicked on the chart area. You can get the tapped region using the [`position`](https://pub.dev/documentation/syncfusion_flutter_charts/latest/charts/ChartTouchInteractionArgs/position.html) argument.
Copy file name to clipboardExpand all lines: Flutter/installation/linux-installer/how-to-install.md
+6-1Lines changed: 6 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -37,11 +37,16 @@ The steps below show how to install Essential Studio Linux installer.
37
37
38
38

39
39
40
-
N> The Unlock key is not required to install the Linux installer. The Syncfusion Linux installer can be used for development purposes without registering the Unlock key.
40
+
N> The Unlock key is not required to install the Linux installer.
41
41
42
42
43
43
4. You can launch the demo source and use the NuGet packages included in the Linux installer.
44
44
45
+
46
+
5. Run the following command in linux machine to deploy the ASP.NET Core samples
47
+
48
+
**dotnet restore projectname -s \nuget** in order to restore.
49
+
45
50
## License key registration in samples
46
51
47
52
After the installation, the license key is required to register the demo source that is included in the Linux installer. To learn about the steps for license registration for the Flutter Linux installer, please refer to this.
0 commit comments