Shivam Report post Posted September 19, 2018 I need to remove the dollar ($) sign from the top of the first bar which is showing the values $410K,only we need 410K https://jsfiddle.net/TumnU/1489/ Share this post Link to post Share on other sites
Akash Biswas Report post Posted September 20, 2018 Hi Shivam, The "$" symbol that is appearing as a prefix for all the values on the chart is due to the "numberPrefix" attribute that is set at the chart-level dataSource. This gets applicable to all the values displayed on the chart. Please note : If you set the "numberPrefix" it will be applied to all the values. To display only the first data plot value without the "$" symbol, as a work-around, you can set the "displayValue" attribute as "410K" in the corresponding(first) data object for that plot. Refer to the sample fiddle : https://jsfiddle.net/TumnU/1491/ Thanks, Akash. Share this post Link to post Share on other sites