Hello, I am using one column chart for various stored procedures to display different information. I want to display the legend for just 1 stored procedure and I was thinking how to achieve this. Any suggestions?
Thanks
So you're saying that you want the legend to remain constant (constructed from one certain table) as you're re-binding the chart to different data? Since the chart legend directly relates to the displayed data, such behavior is not possible. It seems to me that it would be easier to create an image alongside the chart to be used as a legend, or use chart's FillSceneGraph event to put together a bunch of chart primitives.
ultrachart1.Legend.Visible = True
and ultrachart1.legend.visible = false for the rest of them....and it works.
thanks