myChartA = Highcharts.chart('container', { tooltip: { enabled: false }, chart: { type: 'column' }, title: { text: '' }, subtitle: { text: '' }, xAxis: { tickWidth: 0, //categories: ["s-5", "s-4", "s-3", "s-2", "s-1", "s", "s+1", "s+2", "s+3", "s+4", "s+5"], title: { text: '', style: { color: 'black', fontSize:'15px' } }, labels: { style: { color: 'black', fontSize:'15px', }, // format: 'You receive {value} %' } }, yAxis: { min: "{{ player.floor_ceiling.0 }}", max: "{{ player.floor_ceiling.1 }}", visible: true, tickInterval: "{{ player.floor_ceiling.2 }}", gridLineColor: 'transparent', tickLength: 10, tickWidth: 1, title: { text: '', style: { color: 'black', fontSize: '15px' }, rotation: 0 }, labels: { style: { color: 'black', fontSize: '15px' }, format: '$ {value}' }, lineWidth: 1 }, plotOptions: { column: { pointPadding: 0.5, groupPadding: 0.5, shadow: false }, }, series: [{ pointWidth: 100, name: '', showInLegend: false }], credits: { enabled: false }, exporting: {enabled: false} });