JSFiddle - React, Tailwind, and code Playground
Usage of voice assistants
by pepperdigital
HTML
<script src="https://code.highcharts.com/highcharts.js"></script>
<script src="https://code.highcharts.com/modules/exporting.js"></script>
<div id="container" style="min-width: 310px; height: 400px; margin: 0 auto"></div>
JavaScript
Highcharts.chart('container', {
chart: {
type: 'column'
},
credits: {
enabled: false
},
exporting: {
enabled: false
},
colors: ['#00A3E0', '#43B02A'],
title: {
text: ''
},
tooltip: {
formatter: function () {
return this.series.name +
'<br><b>' + this.y + '%</b>';
}
},
xAxis: {
categories: [
'Search for general information',
'For weather updates',
'For amusement',
'For navigation',
'To dial a person in your contact list',
'To play music',
'To text a person in your contact list',
'For calendar entries'
]
},
yAxis: {
min: 0,
max: 60,
labels: {
format: '{value}%'
},
title: {
text: ''
}
},
legend: {
enabled: false
},
series: [
{
name: 'Aware of',
data: [
54,
31,
30,
22,
20,
19,
18,
18
]
},
]
});