有没有办法在使用Highcharts时分配“Alt”属性

问题描述 投票:1回答:1

我写了这样的代码:

<rect x="40" y="40" width="40" height="40" fill="rgb(0,0,255)" role="img"></rect>

在这里,我已将角色指定为Image,那么如何为其指定“alt”属性?

并且不可能拥有alt,那么在使用叙述者时焦点会如何描述图表?

highcharts accessibility
1个回答
3
投票

您可能需要将整个图形放在容器中,并在容器上放置aria-label,在图表上放置aria-hidden="true"alt属性仅对<img>标签和<input type="image">有效。

<div role="img" aria-label="bar chart showing...">
  < <!-- whatever your highchart container tag is --> aria-hidden="true">
    <rect...>
  </whatever>
</div>
© www.soinside.com 2019 - 2024. All rights reserved.