@@ -117,7 +117,7 @@ export interface BaseI18nStrings {
117117 seriesFilterSelectedAriaLabel ?: string ;
118118 legendAriaLabel ?: string ;
119119 detailPopoverDismissAriaLabel ?: string ;
120- chartAccessibleDescription ?: string ;
120+ chartRoleDescription ?: string ;
121121}
122122
123123export interface WithCartesianI18nStrings {
@@ -134,9 +134,9 @@ export interface WithCartesianI18nStrings {
134134 * * `seriesFilterSelectedAriaLabel` (optional, string) - ARIA label of the default series filter which is appended to any option that is selected.
135135 * * `legendAriaLabel` (optional, string) - ARIA label that is associated with the legend in case there is no visible `legend.title` defined.
136136 * * `detailPopoverDismissAriaLabel` (optional, string) - ARIA label for the details popover dismiss button.
137- * * `chartAccessibleDescription ` (optional, string) - Accessible description of the chart plot area, e.g. "interactive chart".
138- * * `xAxisAccessibleDescription ` (optional, string) - Accessible description of the x axis, e.g. "x axis".
139- * * `yAxisAccessibleDescription ` (optional, string) - Accessible description of the y axis, e.g. "y axis".
137+ * * `chartRoleDescription ` (optional, string) - Accessible role description of the chart plot area, e.g. "interactive chart".
138+ * * `xAxisRoleDescription ` (optional, string) - Accessible role description of the x axis, e.g. "x axis".
139+ * * `yAxisRoleDescription ` (optional, string) - Accessible role description of the y axis, e.g. "y axis".
140140 */
141141 i18nStrings ?: CartesianI18nStrings ;
142142}
@@ -155,19 +155,19 @@ export interface WithPieI18nStrings {
155155 * * `seriesFilterSelectedAriaLabel` (optional, string) - ARIA label of the default series filter which is appended to any option that is selected.
156156 * * `legendAriaLabel` (optional, string) - ARIA label that is associated with the legend in case there is no visible `legend.title` defined.
157157 * * `detailPopoverDismissAriaLabel` (optional, string) - ARIA label for the details popover dismiss button.
158- * * `chartAccessibleDescription ` (optional, string) - Accessible description of the chart plot area, e.g. "interactive chart".
159- * * `segmentAccessibleDescription ` (optional, string) - Accessible description of the segment.
158+ * * `chartRoleDescription ` (optional, string) - Accessible role description of the chart plot area, e.g. "interactive chart".
159+ * * `segmentRoleDescription ` (optional, string) - Accessible role description of the segment.
160160 */
161161 i18nStrings ?: PieI18nStrings ;
162162}
163163
164164export interface CartesianI18nStrings extends BaseI18nStrings {
165- xAxisAccessibleDescription ?: string ;
166- yAxisAccessibleDescription ?: string ;
165+ xAxisRoleDescription ?: string ;
166+ yAxisRoleDescription ?: string ;
167167}
168168
169169export interface PieI18nStrings extends BaseI18nStrings {
170- segmentAccessibleDescription ?: string ;
170+ segmentRoleDescription ?: string ;
171171}
172172
173173export interface BaseFilterOptions {
0 commit comments