mirror of
https://github.com/Tautulli/Tautulli.git
synced 2025-07-06 21:21:15 -07:00
55 lines
No EOL
1.1 KiB
JavaScript
55 lines
No EOL
1.1 KiB
JavaScript
var hc_plays_by_user_options = {
|
|
chart: {
|
|
type: 'column',
|
|
backgroundColor: 'rgba(0,0,0,0)',
|
|
renderTo: 'chart_div_plays_by_user'
|
|
},
|
|
title: {
|
|
text: ''
|
|
},
|
|
plotOptions: {
|
|
column: {
|
|
pointPadding: 0.2,
|
|
borderWidth: 0
|
|
}
|
|
},
|
|
legend: {
|
|
enabled: true,
|
|
itemStyle: {
|
|
font: '9pt "Open Sans", sans-serif',
|
|
color: '#A0A0A0'
|
|
},
|
|
itemHoverStyle: {
|
|
color: '#FFF'
|
|
},
|
|
itemHiddenStyle: {
|
|
color: '#444'
|
|
}
|
|
},
|
|
credits: {
|
|
enabled: false
|
|
},
|
|
colors: ['#F9AA03', '#FFFFFF'],
|
|
xAxis: {
|
|
categories: [{}],
|
|
labels: {
|
|
style: {
|
|
color: '#aaa'
|
|
}
|
|
}
|
|
},
|
|
yAxis: {
|
|
title: {
|
|
text: null
|
|
},
|
|
labels: {
|
|
style: {
|
|
color: '#aaa'
|
|
}
|
|
}
|
|
},
|
|
tooltip: {
|
|
shared: true
|
|
},
|
|
series: [{}]
|
|
}; |