How Much Effort Do You Put Into Alt Text?
From over 16,000 people surveyed, more than half (54%) say they “do some” when it comes toalt
text for images that are important to content. The example provided did provide insight into the content and relevance of the image.
Thankfully the least number of people (10%) said they “do nothing.” This is unfortunate as it is a a real accessibility problem.
22% said they “do a little.” The example provided gave no insight into the content and relevance of the image, making it just as bad (possibly worse, as it costs time) than doing nothing. But I suppose at least they are aware they should be providing alt text.
14% of people said they “go all out.” In the example (an image of a graph), the exact numbers shown in the graph were spelled out and the most striking fact about the graph explained. That is often the point of a graph: to emphasize a particular juxtaposition. As long as “go all out.” doesn’t turn into “go too far” (use your own good judgement), this is the ideal way to go.
The graph this time with an embedded Pen using amCharts:
HTML
<div id="chart">
Do nothing: (22%, 3,578 Votes)
Do little: (22%, 3,578 Votes)
Do some: (54%, 8,812 Votes)
Go all out: (14%, 2,251 Votes)
</div>
CSS
#chart {
margin: 0 auto;
width: 90%;
height: 290px;
}
JS
var chart;
var chartData = [
{
choice: "Do nothing",
value: 1582 },
{
choice: "Do little",
value: 3577 },
{
choice: "Do some",
value: 8811 },
{
choice: "Go all out",
value: 2251 }
];
AmCharts.ready(function() {
chart = new AmCharts.AmPieChart();
chart.dataProvider = chartData;
chart.titleField = "choice";
chart.valueField = "value";
chart.outlineColor = "";
chart.outlineAlpha = 0.8;
chart.outlineThickness = 2;
chart.depth3D = 10;
chart.angle = 30;
chart.write("chart");
});