Skip to content

Commit 99b1838

Browse files
982808: Updated the content changes mentioned in the review.
1 parent 8cd50a1 commit 99b1838

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

blazor/chart/chart-dimensions.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,7 @@ documentation: ug
1010
# Chart Dimensions in Blazor Charts Component
1111

1212
N>
13-
* When no size is specified, the default height and width are 450 px and 600 px, respectively.
14-
* To avoid delayed rendering, architectural changes were introduced for scenarios where width/height are specified [in percentages](#in-percentage) or [through style settings](#size-for-container) applied to the component's parent. As a result, the chart first renders with the default size and then redraws responsively to adjust only its dimensions. To prevent this redraw, include the following script in the page head.
13+
When dimensions are defined using [percentages](#in-percentage) or [through style settings](#size-for-container), the chart initially renders at default size, then redraws responsively based on dimensions. To avoid this redraw, include the following script in the section of your HTML page.
1514

1615
```html
1716
<head>

blazor/chart/date-time-axis.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ The axis range is calculated automatically based on the data. You can also custo
102102
@using Syncfusion.Blazor.Charts
103103
104104
<SfChart>
105-
<ChartPrimaryXAxis IntervalType="Syncfusion.Blazor.Charts.IntervalType.Months" ValueType="Syncfusion.Blazor.Charts.ValueType.DateTime">
105+
<ChartPrimaryXAxis IntervalType="IntervalType.Months" ValueType="Syncfusion.Blazor.Charts.ValueType.DateTime">
106106
</ChartPrimaryXAxis>
107107
108108
<ChartSeriesCollection>

blazor/chart/logarithmic-axis.md

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

1212
<!-- markdownlint-disable MD033 -->
1313

14-
Use a logarithmic axis when data spans several orders of magnitude (for example, 10<sup>-6</sup> to 10<sup>6</sup>). This scale helps visualize both small and large values on the same chart.
14+
Use a logarithmic axis when data spans multiple orders of magnitude (for example, 10<sup>-6</sup> to 10<sup>6</sup>). This scale makes it easier to visualize both small and large values on the same chart.
1515

1616
Watch the following video to learn how to customize the logarithmic axis.
1717

0 commit comments

Comments
 (0)