diff --git a/blazor-toc.html b/blazor-toc.html
index d86dc685bc..2bd9b1e453 100644
--- a/blazor-toc.html
+++ b/blazor-toc.html
@@ -4277,6 +4277,7 @@
Legend
Customization
Print and Export
+ Accessibility
Events
diff --git a/blazor/sankey/accessibility.md b/blazor/sankey/accessibility.md
new file mode 100644
index 0000000000..c725f8d14e
--- /dev/null
+++ b/blazor/sankey/accessibility.md
@@ -0,0 +1,83 @@
+---
+layout: post
+title: Accessibility in Blazor Sankey Component | Syncfusion
+description: Checkout and learn here all about Accessibility using Keyboard navigation in Syncfusion Blazor Sankey component and more.
+platform: Blazor
+control: Sankey
+documentation: ug
+---
+
+# Accessibility in Blazor Sankey Component
+
+The Blazor Sankey component followed the accessibility guidelines and standards, including [ADA](https://www.ada.gov/), [Section 508](https://www.section508.gov/), [WCAG 2.2](https://www.w3.org/TR/WCAG22/) standards, and [WCAG roles](https://www.w3.org/TR/wai-aria/#roles) that are commonly used to evaluate accessibility.
+
+The accessibility compliance for the Blazor Sankey component is outlined below.
+
+| Accessibility Criteria | Compatibility |
+| -- | -- |
+| [WCAG 2.2 Support](../common/accessibility#accessibility-standards) |
|
+| [Section 508 Support](../common/accessibility#accessibility-standards) |
|
+| [Screen Reader Support](../common/accessibility#screen-reader-support) |
|
+| [Right-To-Left Support](../common/accessibility#right-to-left-support) |
|
+| [Color Contrast](../common/accessibility#color-contrast) |
|
+| [Mobile Device Support](../common/accessibility#mobile-device-support) |
|
+| [Keyboard Navigation Support](../common/accessibility#keyboard-navigation-support) |
|
+| [Axe-core Accessibility Validation](../common/accessibility#ensuring-accessibility) |
|
+
+
+
+
- All features of the component meet the requirement.
+
+
- Some features of the component do not meet the requirement.
+
+
- The component does not meet the requirement.
+
+## WAI-ARIA attributes
+
+WAI-ARIA(Accessibility Initiative - Accessible Rich Internet Applications) defines a way to increase the accessibility of web pages, dynamic content, and user interface components developed with AJAX, HTML, JavaScript, and related technologies. ARIA provides additional semantics to describe the role, state, and functionality of web components.
+
+Element |Default description
+-----|-----
+Links |Reads the link value.
+Nodes |Reads the Node value.
+Legend |Reads the legend value.
+
+The Blazor Sankey component followed the [WAI-ARIA](https://www.w3.org/WAI/ARIA/apg/patterns/alert/) patterns to meet the accessibility. The following ARIA attributes are used in the Blazor Sankey component:
+
+* img (role)
+* button (role)
+* region (role)
+* aria-label (attribute)
+* aria-hidden (attribute)
+* aria-pressed (attribute)
+
+## Keyboard navigation
+
+The Blazor Sankey component followed the [keyboard interaction](https://www.w3.org/WAI/ARIA/apg/patterns/alert/#keyboardinteraction) guideline, making it easy for people who use assistive technologies (AT) and those who completely rely on keyboard navigation. The following keyboard shortcuts are supported by the Blazor Sankey component.
+
+| Windows | Mac | Description |
+|-----|-----|---|
+| Tab | Tab | Moves focus to the next focusable element in the Sankey. |
+| ↓ | ↓ | Moves focus to the data point below the selected node. |
+| ↑ | ↑ | Moves focus to the data point above the selected node. |
+| ← | ← | Moves focus to the data point to the left of the selected node. |
+| → | → | Moves focus to the data point to the right of the selected node. |
+| Ctrl + P | ⌘ + P | Prints the Sankey. |
+
+
+## Ensuring accessibility
+
+The Blazor Sankey component's accessibility levels are ensured through an [axe-core](https://www.nuget.org/packages/Deque.AxeCore.Playwright) with playwright tests.
+
+The accessibility compliance of the Blazor Sankey component is shown in the following sample. Open the sample in a new window to evaluate the accessibility of the Blazor Sankey component with accessibility tools.
+
+## See also
+
+* [Accessibility in Syncfusion® Blazor components](https://blazor.syncfusion.com/documentation/common/accessibility)
+
+* [Accessibility Customization in Syncfusion® Blazor components](./advanced-accessibility-configuration)
\ No newline at end of file