Hi,
I am trying to display the tooltip for one of our reports in dollar format ($). Below are the settings I have configured:
SELECT 'dbr.chart', 'MSBar', 'Comparison';
SELECT 'dbr.chart.options', 'showValues', 1;
SELECT 'dbr.chart.options', 'Total Payments', '$ %.2f';
SELECT 'dbr.colstyle', 'Total Payments', '$ %.2f';
SELECT 'dbr.chart.color', '#F4CE14', '#379777';
SELECT 'dbr.chart.options', 'legend', 1;
SELECT 'dbr.chart.options', 'rotateNames', 0;
SELECT 'dbr.chart.options', 'legend.position', 'bottom';
SELECT 'dbr.chart.options', 'tooltip', '$ %.2f';
I am trying to format the "Total Payments" value in the tooltip as a dollar amount. Is there something I might be missing?
Any help would be appreciated.