Skip to content

Commit 9fbe052

Browse files
committed
FLUT-969263-[others][flutter]: Addressed review suggestions
1 parent a5ff7b0 commit 9fbe052

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

Flutter/funnel-chart/chart-appearance.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ documentation: ug
1111

1212
## Chart sizing
1313

14-
Chart renders based on the parent widget's size. If you need the chart to be rendered in specific size, then set the size(width/height) to the parent widget.
14+
Chart renders based on the parent widget size. If you need the chart to be rendered in specific size, then set the size(width/height) to the parent widget.
1515

1616
{% tabs %}
1717
{% highlight dart hl_lines="7 8" %}

Flutter/funnel-chart/export-funnel-chart.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ To export the funnel chart as a PNG image, we can get the image by calling [`toI
122122

123123
## Export PDF
124124

125-
Similar to the above method, we can also export the rendered Funnel chart as a PDF document. We create the pdf document using PDF component. This can be done at the application level itself. Please find the code snippet below.
125+
Similar to the above way, we can also export the rendered Funnel chart as a PDF document. We create the PDF document using PDF component. This can be done in the application level itself. Please find the code snippet below.
126126

127127
**Add dependency**
128128

Flutter/pyramid-chart/selection.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ documentation: ug
99

1010
# Selection in Flutter Pyramid Chart (SfPyramidChart)
1111

12-
The selection feature in chart lets you to select in a segment in a series or the series itself. This feature allows you select either individual or cluster of segments in the chart series.
12+
The selection feature in chart lets you to select in a segment in a series or the series itself. This feature allows you to select either individual or cluster of segments in the chart series.
1313

1414
{% tabs %}
1515
{% highlight dart %}
@@ -99,7 +99,7 @@ You can customize the segments using the below properties.
9999

100100
## Multi-selection
101101

102-
Multiple segment selection can be enabled using the [`enableMultiSelection`](https://pub.dev/documentation/syncfusion_flutter_charts/latest/charts/SfPyramidChart/enableMultiSelection.html) property of chart.
102+
Multiple selection can be enabled using the [`enableMultiSelection`](https://pub.dev/documentation/syncfusion_flutter_charts/latest/charts/SfPyramidChart/enableMultiSelection.html) property of chart.
103103

104104
{% tabs %}
105105
{% highlight dart %}

Flutter/pyramid-chart/tooltip.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,7 @@ By default, x and y value will be displayed in the tooltip, and it can be custom
167167

168168
## Tooltip positioning
169169

170-
The tooltip can be configured to display in the fixed location or at the pointer location itself using the [`tooltipPosition`](https://pub.dev/documentation/syncfusion_flutter_charts/latest/charts/TooltipBehavior/tooltipPosition.html) property. This defaults to [`TooltipPosition.auto`](https://pub.dev/documentation/syncfusion_flutter_charts/latest/charts/TooltipPosition.html#auto).
170+
The tooltip can be made to display in the fixed location or at the pointer location itself using the [`tooltipPosition`](https://pub.dev/documentation/syncfusion_flutter_charts/latest/charts/TooltipBehavior/tooltipPosition.html) property. This defaults to [`TooltipPosition.auto`](https://pub.dev/documentation/syncfusion_flutter_charts/latest/charts/TooltipPosition.html#auto).
171171

172172
{% tabs %}
173173
{% highlight dart %}
@@ -259,8 +259,8 @@ The [`activationMode`](https://pub.dev/documentation/syncfusion_flutter_charts/l
259259

260260
The ActivationMode enum includes the following values:
261261

262-
* [`ActivationMode.longPress`](https://pub.dev/documentation/syncfusion_flutter_charts/latest/charts/ActivationMode.html) - activates tooltip only when performing the long press action.
263-
* [`ActivationMode.singleTap`](https://pub.dev/documentation/syncfusion_flutter_charts/latest/charts/ActivationMode.html#longPress) - activates tooltip only when performing single tap action.
262+
* [`ActivationMode.longPress`](https://pub.dev/documentation/syncfusion_flutter_charts/latest/charts/ActivationMode.html#longPress) - activates tooltip only when performing the long press action.
263+
* [`ActivationMode.singleTap`](https://pub.dev/documentation/syncfusion_flutter_charts/latest/charts/ActivationMode.html#singleTap) - activates tooltip only when performing single tap action.
264264
* [`ActivationMode.doubleTap`](https://pub.dev/documentation/syncfusion_flutter_charts/latest/charts/ActivationMode.html#doubleTap) - activates tooltip only when performing double tap action.
265265
* [`ActivationMode.none`](https://pub.dev/documentation/syncfusion_flutter_charts/latest/charts/ActivationMode.html#none) - hides the visibility of tooltip when setting activation mode to none.
266266

0 commit comments

Comments
 (0)