| Server IP : 54.94.228.101 / Your IP : 172.28.1.13 Web Server : Apache System : Linux ip-172-28-29-189 6.5.0-1014-aws #14~22.04.1-Ubuntu SMP Thu Feb 15 15:27:06 UTC 2024 x86_64 User : www-data ( 33) PHP Version : 7.2.34-43+ubuntu22.04.1+deb.sury.org+1 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals, MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /var/www/html/vinumday2_0/node_modules/chart.js/docs/general/ |
Upload File : |
# Accessible Charts Chart.js charts are rendered on user provided `canvas` elements. Thus, it is up to the user to create the `canvas` element in a way that is accessible. The `canvas` element has support in all browsers and will render on screen but the `canvas` content will not be accessible to screen readers. With `canvas`, the accessibility has to be added with `ARIA` attributes on the `canvas` element or added using internal fallback content placed within the opening and closing canvas tags. This [website](http://pauljadam.com/demos/canvas.html) has a more detailed explanation of `canvas` accessibility as well as in depth examples. ## Examples These are some examples of **accessible** `canvas` elements. By setting the `role` and `aria-label`, this `canvas` now has an accessible name. ```html <canvas id="goodCanvas1" width="400" height="100" aria-label="Hello ARIA World" role="img"></canvas> ``` This `canvas` element has a text alternative via fallback content. ```html <canvas id="okCanvas2" width="400" height="100"> <p>Hello Fallback World</p> </canvas> ``` These are some bad examples of **inaccessible** `canvas` elements. This `canvas` element does not have an accessible name or role. ```html <canvas id="badCanvas1" width="400" height="100"></canvas> ``` This `canvas` element has inaccessible fallback content. ```html <canvas id="badCanvas2" width="400" height="100">Your browser does not support the canvas element.</canvas> ```