cancel
Showing results for 
Search instead for 
Did you mean: 
intapiuser
Community Team Member
Community Team Member
You can accomplish it via JavaScript - you could make the value appear in that format within the data point tooltip of the column chart widget i.e. the box that appears when you hover over the columns.
widget.on("beforedatapointtooltip", function (w, arg) {
  
  if (arg.context.pointScope.y > 0) {
    arg.context.points[0].value = "+" + arg.context.points[0].value;
  }
});
This is a widget level script for the column chart widget you wanted this formatting to be applied to.
Version history
Last update:
‎03-02-2023 09:05 AM
Updated by:
Contributors
Community Toolbox

Recommended quick links to assist you in optimizing your community experience:

Product Feedback Forum:

Need additional support?:

Submit a Support Request

Sisense Privacy Policy