diff --git a/apps/demos/Demos/CardView/FieldTemplate/React/Progress.tsx b/apps/demos/Demos/CardView/FieldTemplate/React/Progress.tsx
index 8e42f9c1a94d..cb65d2f9ae93 100644
--- a/apps/demos/Demos/CardView/FieldTemplate/React/Progress.tsx
+++ b/apps/demos/Demos/CardView/FieldTemplate/React/Progress.tsx
@@ -5,12 +5,15 @@ interface ProgressProps {
value: number;
}
+const progressElementAttributes = { 'aria-label': 'Progress Bar' };
+const formatPercent = (_: unknown, value: number) => `${value}%`;
+
const Progress = ({ value }: ProgressProps) => (
`${value}%`}
+ elementAttr={progressElementAttributes}
+ statusFormat={formatPercent}
/>
);
diff --git a/apps/demos/Demos/CardView/FieldTemplate/ReactJs/Progress.js b/apps/demos/Demos/CardView/FieldTemplate/ReactJs/Progress.js
index a40b505fda87..efdc15cbd741 100644
--- a/apps/demos/Demos/CardView/FieldTemplate/ReactJs/Progress.js
+++ b/apps/demos/Demos/CardView/FieldTemplate/ReactJs/Progress.js
@@ -1,12 +1,14 @@
import React from 'react';
import { ProgressBar } from 'devextreme-react/progress-bar';
+const progressElementAttributes = { 'aria-label': 'Progress Bar' };
+const formatPercent = (_, value) => `${value}%`;
const Progress = ({ value }) => (
`${value}%`}
+ elementAttr={progressElementAttributes}
+ statusFormat={formatPercent}
/>
);
diff --git a/apps/demos/Demos/CardView/FieldTemplate/ReactJs/index.html b/apps/demos/Demos/CardView/FieldTemplate/ReactJs/index.html
index b6ad2f9b1595..7b47950bbaff 100644
--- a/apps/demos/Demos/CardView/FieldTemplate/ReactJs/index.html
+++ b/apps/demos/Demos/CardView/FieldTemplate/ReactJs/index.html
@@ -12,7 +12,6 @@
-