Dimitar,
Thanks for pointing me in the right direction. For anybody else looking for the answer to this problem, I added another datafield with a ‘-data’ but the same start as the percentage value and but didn’t add it as a series. Then I used the following in the series:
toolTipFormatFunction: function(value, itemIndex, series, group, categoryValue, categoryAxis){
var returnVal = series.dataField + ', ';
returnVal += ' - ' + data[itemIndex][series.dataField + '-data'];
return returnVal;
}
-
This reply was modified 8 years, 5 months ago by swarren.
-
This reply was modified 8 years, 5 months ago by swarren.