When i run this, it works:
select 'dbr.chart', 'MSColumn', 'Net Daily Signups (6Mo)', '800', '400'
select 'dbr.chart.options', 'showvalues', 0;
select 'dbr.chart.options', 'rotateNames', 90;
select 'dbr.chart.options', 'chartdirector', '$c->xAxis->setLabelStep(3);';
exec MBSS1.DB_MARKETING.dbo.mt_db_hn_net_signups_by_day_6mo
However, when I add in the command to hide the legend, my label spacing breaks (goes back to default spacing of 1):
select 'dbr.chart', 'MSColumn', 'Net Daily Signups (6Mo)', '800', '400'
select 'dbr.chart.options', 'showvalues', 0;
select 'dbr.chart.options', 'showLegend', 0;
select 'dbr.chart.options', 'rotateNames', 90;
select 'dbr.chart.options', 'chartdirector', '$c->xAxis->setLabelStep(3);';
exec MBSS1.DB_MARKETING.dbo.mt_db_hn_net_signups_by_day_6mo
What's causing this?