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: ej2-react/accumulation-chart/advanced-accessibility-configuration.md
+16-16Lines changed: 16 additions & 16 deletions
Original file line number
Diff line number
Diff line change
@@ -14,13 +14,13 @@ The Syncfusion® React Accumulation Chart control is structured to visualize dat
14
14
15
15
The accumulation chart control has a number of characteristics that enable accessibility features to be customized, including:
16
16
17
-
*`accessibilityDescription` - Provides a text description for the accumulation chart, improving support for screen readers.
18
-
*`accessibilityRole` - Specifies the role of the accumulation chart, helping screen readers to identify the element appropriately.
19
-
*`focusable` - Allows the accumulation chart to receive focus, making it accessible via keyboard navigation.
20
-
*`focusBorderColor` - Sets the color of the focus border, enhancing visibility when the accumulation chart is focused.
21
-
*`focusBorderMargin` - Defines the margin around the focus border.
22
-
*`focusBorderWidth` - Specifies the width of the focus border.
23
-
*`tabIndex` - Specifies the tab order for the accumulation chart element, enabling efficient keyboard navigation.
17
+
*[`accessibilityDescription`](https://ej2.syncfusion.com/react/documentation/api/accumulation-chart/accessibilityModel/#accessibilitydescription) - Provides a text description for the accumulation chart, improving support for screen readers.
18
+
*[`accessibilityRole`](https://ej2.syncfusion.com/react/documentation/api/accumulation-chart/accessibilityModel/#accessibilityrole) - Specifies the role of the accumulation chart, helping screen readers to identify the element appropriately.
19
+
*[`focusable`](https://ej2.syncfusion.com/react/documentation/api/accumulation-chart/accessibilityModel/#focusable) - Allows the accumulation chart to receive focus, making it accessible via keyboard navigation.
20
+
*[`focusBorderColor`](https://ej2.syncfusion.com/react/documentation/api/accumulation-chart#focusbordercolor) - Sets the color of the focus border, enhancing visibility when the accumulation chart is focused.
21
+
*[`focusBorderMargin`](https://ej2.syncfusion.com/react/documentation/api/accumulation-chart#focusbordermargin) - Defines the margin around the focus border.
22
+
*[`focusBorderWidth`](https://ej2.syncfusion.com/react/documentation/api/accumulation-chart#focusborderwidth) - Specifies the width of the focus border.
23
+
*[`tabIndex`](https://ej2.syncfusion.com/react/documentation/api/accumulation-chart/accessibilityModel/#tabindex) - Specifies the tab order for the accumulation chart element, enabling efficient keyboard navigation.
24
24
25
25
{% tabs %}
26
26
{% highlight ts tabtitle="index.jsx" %}
@@ -37,10 +37,10 @@ The accumulation chart control has a number of characteristics that enable acces
37
37
38
38
The [`series`](https://ej2.syncfusion.com/react/documentation/api/accumulation-chart#series) supports the customization of accessibility for data points, allowing key characteristics to be adjusted for enhanced accessibility, such as:
39
39
40
-
*`accessibilityDescription` - Provides a text description for the series root element, enhancing support for screen readers.
41
-
*`accessibilityRole` - Specifies the role of the series, helping screen readers to identify the element appropriately.
42
-
*`focusable` - Allows the series to receive focus, making it accessible via keyboard navigation.
43
-
*`tabIndex` - Specifies the tab order of the series element, enabling efficient keyboard navigation.
40
+
*[`accessibilityDescription`](https://ej2.syncfusion.com/react/documentation/api/accumulation-chart/accessibilityModel/#accessibilitydescription) - Provides a text description for the series root element, enhancing support for screen readers.
41
+
*[`accessibilityRole`](https://ej2.syncfusion.com/react/documentation/api/accumulation-chart/accessibilityModel/#accessibilityrole) - Specifies the role of the series, helping screen readers to identify the element appropriately.
42
+
*[`focusable`](https://ej2.syncfusion.com/react/documentation/api/accumulation-chart/accessibilityModel/#focusable) - Allows the series to receive focus, making it accessible via keyboard navigation.
43
+
*[`tabIndex`](https://ej2.syncfusion.com/react/documentation/api/accumulation-chart/accessibilityModel/#tabindex) - Specifies the tab order of the series element, enabling efficient keyboard navigation.
44
44
45
45
{% tabs %}
46
46
{% highlight ts tabtitle="index.jsx" %}
@@ -55,12 +55,12 @@ The [`series`](https://ej2.syncfusion.com/react/documentation/api/accumulation-c
55
55
56
56
## Legend
57
57
58
-
The [`legendSettings`](https://ej2.syncfusion.com/react/documentation/api/accumulation-chart#legendsettings) provide information about the series shown in the accumulation chart. The following `accessibility` properties in [`legendSettings`](https://ej2.syncfusion.com/react/documentation/api/accumulation-chart#legendsettings) can be used to alter the accessibility of the accumulation chart's legend:
58
+
The [`legendSettings`](https://ej2.syncfusion.com/react/documentation/api/accumulation-chart#legendsettings) provide information about the series shown in the accumulation chart. The following [`accessibility`](https://ej2.syncfusion.com/react/documentation/api/accumulation-chart/legendSettingsModel/#accessibility) properties in [`legendSettings`](https://ej2.syncfusion.com/react/documentation/api/accumulation-chart#legendsettings) can be used to alter the accessibility of the accumulation chart's legend:
59
59
60
-
*`accessibilityDescription` - Provides a text description for the legend root element, enhancing support for screen readers..
61
-
*`accessibilityRole` - Specifies the role of the legend items to screen readers, providing appropriate context.
62
-
*`focusable` - Specifies whether legend items are focusable via keyboard navigation.
63
-
*`tabIndex` - Specifies the tab order of the legend element, enabling efficient keyboard navigation.
60
+
*[`accessibilityDescription`](https://ej2.syncfusion.com/react/documentation/api/accumulation-chart/accessibilityModel/#accessibilitydescription) - Provides a text description for the legend root element, enhancing support for screen readers..
61
+
*[`accessibilityRole`](https://ej2.syncfusion.com/react/documentation/api/accumulation-chart/accessibilityModel/#accessibilityrole) - Specifies the role of the legend items to screen readers, providing appropriate context.
62
+
*[`focusable`](https://ej2.syncfusion.com/react/documentation/api/accumulation-chart/accessibilityModel/#focusable) - Specifies whether legend items are focusable via keyboard navigation.
63
+
*[`tabIndex`](https://ej2.syncfusion.com/react/documentation/api/accumulation-chart/accessibilityModel/#tabindex) - Specifies the tab order of the legend element, enabling efficient keyboard navigation.
Copy file name to clipboardExpand all lines: ej2-react/accumulation-chart/legend.md
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -194,7 +194,7 @@ The [`itemPadding`](https://ej2.syncfusion.com/react/documentation/api/accumulat
194
194
195
195
## Legend layout
196
196
197
-
The `layout` property in `legendSettings` allows you to display the legend either horizontally or vertically. By default, the `layout` is set to **Auto**. The `maximumColumns` property in `legendSettings` defines the maximum number of columns that can be displayed within the available space when using the auto layout. Additionally, enabling the `fixedWidth` property in `legendSettings` ensures that all legend items are displayed with equal widths. The width of each item is determined by the maximum width among the legend items.
197
+
The [`layout`](https://ej2.syncfusion.com/react/documentation/api/accumulation-chart/legendSettingsModel/#layout) property in [`legendSettings`](https://ej2.syncfusion.com/react/documentation/api/accumulation-chart#legendsettings) allows you to display the legend either horizontally or vertically. By default, the [`layout`](https://ej2.syncfusion.com/react/documentation/api/accumulation-chart/legendSettingsModel/#layout) is set to **Auto**. The [`maximumColumns`](https://ej2.syncfusion.com/react/documentation/api/accumulation-chart/legendSettingsModel/#maximumcolumns) property in [`legendSettings`](https://ej2.syncfusion.com/react/documentation/api/accumulation-chart#legendsettings) defines the maximum number of columns that can be displayed within the available space when using the auto layout. Additionally, enabling the [`fixedWidth`](https://ej2.syncfusion.com/react/documentation/api/accumulation-chart/legendSettingsModel/#fixedwidth) property in [`legendSettings`](https://ej2.syncfusion.com/react/documentation/api/accumulation-chart#legendsettings) ensures that all legend items are displayed with equal widths. The width of each item is determined by the maximum width among the legend items.
Copy file name to clipboardExpand all lines: ej2-react/accumulation-chart/tool-tip.md
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -132,7 +132,7 @@ Using [`tooltipRender`](https://ej2.syncfusion.com/react/documentation/api/accum
132
132
133
133
## Enable highlight
134
134
135
-
By setting the `enableHighlight` property to **true**, the hovered pie slice is highlighted, while the remaining slices are dimmed, enhancing focus and clarity.
135
+
By setting the [`enableHighlight`](https://ej2.syncfusion.com/react/documentation/api/accumulation-chart/tooltipSettingsModel/#enablehighlight) property to **true**, the hovered pie slice is highlighted, while the remaining slices are dimmed, enhancing focus and clarity.
Copy file name to clipboardExpand all lines: ej2-react/avatar/how-to/avatar-customization.md
+13-1Lines changed: 13 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -21,6 +21,9 @@ The avatar comes with default background color (Grey). This can be easily custom
21
21
{% highlight ts tabtitle="index.tsx" %}
22
22
{% include code-snippet/avatar/color-cs1/app/index.tsx %}
23
23
{% endhighlight %}
24
+
{% highlight html tabtitle="index.html" %}
25
+
{% include code-snippet/avatar/color-cs1/index.html %}
26
+
{% endhighlight %}
24
27
{% highlight ts tabtitle="index.css" %}
25
28
{% include code-snippet/avatar/color-cs1/index.css %}
26
29
{% endhighlight %}
@@ -39,6 +42,9 @@ Even though the avatar comes with five predefined sizes, sometimes it's not enou
39
42
{% highlight ts tabtitle="index.tsx" %}
40
43
{% include code-snippet/avatar/custom-size-cs1/app/index.tsx %}
41
44
{% endhighlight %}
45
+
{% highlight html tabtitle="index.html" %}
46
+
{% include code-snippet/avatar/custom-size-cs1/index.html %}
47
+
{% endhighlight %}
42
48
{% highlight ts tabtitle="index.css" %}
43
49
{% include code-snippet/avatar/custom-size-cs1/index.css %}
44
50
{% endhighlight %}
@@ -57,6 +63,9 @@ Avatars can be used with a wide variety of media formats like SVG, font-icons, i
57
63
{% highlight ts tabtitle="index.tsx" %}
58
64
{% include code-snippet/avatar/media-formats-cs1/app/index.tsx %}
59
65
{% endhighlight %}
66
+
{% highlight html tabtitle="index.html" %}
67
+
{% include code-snippet/avatar/media-formats-cs1/index.html %}
68
+
{% endhighlight %}
60
69
{% highlight ts tabtitle="index.css" %}
61
70
{% include code-snippet/avatar/media-formats-cs1/index.css %}
62
71
{% endhighlight %}
@@ -66,7 +75,7 @@ Avatars can be used with a wide variety of media formats like SVG, font-icons, i
66
75
67
76
## Dynamic avatar rendering from datasource
68
77
69
-
We can render avatar component dynamically from a data-source. In this sample we have rendered the avatar component
78
+
We can render the avatar component dynamically from a data-source. In this sample we have rendered the avatar component
70
79
using a data-source which contains the image source in different sizes dynamically. This is applicable also for data-source from the server or remote data or AJAX. We have also rendered the avatar using `CSS` property `background-image` and using image tag.
71
80
72
81
{% tabs %}
@@ -76,6 +85,9 @@ using a data-source which contains the image source in different sizes dynamical
76
85
{% highlight ts tabtitle="index.tsx" %}
77
86
{% include code-snippet/avatar/react-avatar-cs1/app/index.tsx %}
78
87
{% endhighlight %}
88
+
{% highlight html tabtitle="index.html" %}
89
+
{% include code-snippet/avatar/react-avatar-cs1/index.html %}
90
+
{% endhighlight %}
79
91
{% highlight ts tabtitle="index.css" %}
80
92
{% include code-snippet/avatar/react-avatar-cs1/index.css %}
Copy file name to clipboardExpand all lines: ej2-react/avatar/how-to/integrate-avatar-into-badge.md
+4-1Lines changed: 4 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -10,7 +10,7 @@ domainurl: ##DomainURL##
10
10
11
11
# Integrate avatar into badge in React Avatar component
12
12
13
-
The badge is dependent and supportive component, and it can be used with avatar to create a notification avatar.
13
+
The badge is a dependent and supportive component, and it can be used with an avatar to create a notification avatar.
14
14
The default avatar (.`e-avatar`) and circle avatar (.`e-avatar-circle`) have been used with notification badges (.`e-badge-notification`) in the following sample.
15
15
16
16
{% tabs %}
@@ -20,6 +20,9 @@ The default avatar (.`e-avatar`) and circle avatar (.`e-avatar-circle`) have bee
20
20
{% highlight ts tabtitle="index.tsx" %}
21
21
{% include code-snippet/avatar/badge-cs1/app/index.tsx %}
22
22
{% endhighlight %}
23
+
{% highlight html tabtitle="index.html" %}
24
+
{% include code-snippet/avatar/badge-cs1/index.html %}
25
+
{% endhighlight %}
23
26
{% highlight ts tabtitle="index.css" %}
24
27
{% include code-snippet/avatar/badge-cs1/index.css %}
Copy file name to clipboardExpand all lines: ej2-react/avatar/how-to/integrate-avatar-into-listview.md
+4-1Lines changed: 4 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -10,7 +10,7 @@ domainurl: ##DomainURL##
10
10
11
11
# Integrate avatar into listview in React Avatar component
12
12
13
-
Avatar is integrated into the listview to create contacts applications. The `xsmall` size avatar is used to match the size of the list item. Letters and images are also used as avatar content.
13
+
The Avatar component is integrated into the listview to create contacts applications. The `xsmall` size avatar is used to match the size of the list item. Letters and images are also used as avatar content.
14
14
15
15
{% tabs %}
16
16
{% highlight js tabtitle="index.jsx" %}
@@ -19,6 +19,9 @@ Avatar is integrated into the listview to create contacts applications. The `xsm
19
19
{% highlight ts tabtitle="index.tsx" %}
20
20
{% include code-snippet/avatar/listview-cs1/app/index.tsx %}
21
21
{% endhighlight %}
22
+
{% highlight html tabtitle="index.html" %}
23
+
{% include code-snippet/avatar/listview-cs1/index.html %}
24
+
{% endhighlight %}
22
25
{% highlight ts tabtitle="index.css" %}
23
26
{% include code-snippet/avatar/listview-cs1/index.css %}
0 commit comments