_options = {
return {
chart: { animation: false, reflow: false, style: { fontSize: "1em" } },
legend: {
itemStyle: { fontSize: "0.875em", fontWeight: "normal" },
symbolRadius: 0
},
plotOptions: {
line: {
dataLabels: {
enabled: true,
format: "{y:,.2f}%"
},
enableMouseTracking: false
},
series: { animation: false }
},
series: [
{
borderColor: "#78909C",
color: "#78909C ",
data: _hireRates,
name: "Hire Rate",
type: "line"
}
],
title: {
style: { fontSize: "1.125em" },
text: `Hire Rates by Month for ${workforceSizeGetYear()}`
},
tooltip: {
valueDecimals: 2,
valueSuffix: "%"
},
xAxis: [
{
categories: monthsGetShortNames(),
labels: { style: { fontSize: "0.875em" } }
}
],
yAxis: [
{
labels: {
format: "{value:,.0f}%",
style: { fontSize: "0.875em" }
},
title: { text: "Rate" }
}
]
};
}