Create a chart "horizontal with bullet", quite happy with the result.
Only issue is that I can have the tool tip with the value of the column, but not the value presented. Don't understand why?
Is it a limitation? or a piece of code to add in the handler?
We`ve found solution for this problem. You should go to Dashboard -> Advanced and add this script:
var handlers = {};
handlers.preRender = function(config, logger) {
logger.debug('Configuration: ', config);
var data = config.series[0].data;
var value = config.series[0].valueField;
config.series.push({ field: value,
type: 'bar',
labels:{visible:true},
data: data}),
return true;
}
But It works for a single series only!
Added and no change.
I guess it is because I have multiple series or should I change anything on the code you give above based on the column definition I have?