I followed this demo to draw Column charts. (https://www.highcharts.com/ios/demo/column-rotated-labels).
What Issue I am facing is : I can easily show x-axis and y-axis information in tooltip. But I am not able to put additional information in tooltip from a different array (suppose array for depicting required qty for item).
I tried to do like this ;
tooltip.pointFormat = [NSString stringWithFormat:@"Velocity : {point.y:.2f} Remaining Quantity : %@",RemainingQtyArray]; It will print whole array in tooltip. tooltip.pointFormat = [NSString stringWithFormat:@"Velocity : {point.y:.2f} Remaining Quantity : %@",RemainingQtyArray[i++]]; It will print last item from array. So, how can i put additional info so that when anyone taps on graph, it will show this info too.
Check this Fiddle demo in JS
Tooltip in JS way
Series data in JS way
Through doc I convert into ios.
For ios
For ios series data