Pyramid / Sales Funnel
Posted: Wed Sep 28, 2022 12:53 am
Hello. I have a couple of questions regarding TPyramidSeries.
First off. I think there may be a bug with Tooltips when the LeftAxis is inverted.
Using your Pyramid_Series unit Tee9new, I add a Mark Tips tool to the chart and set it like so:
With LeftAxis non-inverted, I see tooltips as expected. When inverted I do not see tooltips.
Finally, I expect this is possible but I am not experienced enough with TChart.
I add data to the series like so:
I would like to show the label on the LeftAxis, not values. So in the above case, there would be 4 ticks on the left axis being Design, Programming, Systems Test and QA.
How can this be done? I can provide a sample if necessary.
Thanks
Mark
First off. I think there may be a bug with Tooltips when the LeftAxis is inverted.
Using your Pyramid_Series unit Tee9new, I add a Mark Tips tool to the chart and set it like so:
Code: Select all
TMarksTipTool(Chart1.Tools[0]).Style := smsLabelValue;
Finally, I expect this is possible but I am not experienced enough with TChart.
I add data to the series like so:
Code: Select all
Series1.Add(100, 'Design');
Series1.Add(150, 'Programming');
Series1.Add(90, 'Systems Test');
Series1.Add(200, 'QA');
How can this be done? I can provide a sample if necessary.
Thanks
Mark