I inserted a screen shot of a column chart using WinChart. It is very small but my question should still be clear. Notice how small the actual chart is as it uses only a small portion of the space I have given to the WinChart control. How do I make the chart itself use the entire area of space provided for it? Thanks!
Hello Elondon,
Could you please tell me what is your component version and do you have any installed service release and which one. Also if you are able please send me small sample that reproduce your issue. I`ll be glad to research this issue for you.
Also could you please tell me what`s happen when you set new Rectangle. Are you able to change the behavior using this peroperty?
Please if you have any questions, do not hesitate to write me
Regards
Hi -
My issue is not that I want the chart smaller, I want the chart bigger. You say by default, the chart takes up the entire space of the control - my problem is that it is not taking up the entire space of the control and I want it to. I create the control, go through the wizard, and without touching any other properties, the chart size is like 1/4th the size of the control and I'm not sure why.
Thanks.
Have you been able to resolve your issue ? Did you have a time to take a look at my sample.
Please let me know if you have any further questions.
By default the ChartArea get whole available space in the UltraChart control. One possible approach to change the ChartArea is to use the property:
- ChartArea myChartArea = new ChartArea();
- myChartArea.Bounds = new Rectangle(20, 20, 350, 350);
Please take a look at the attached sample for more details. Please let me know if you have any questions