Resize Rectangle Tool

TeeChart for Microsoft Visual Studio .NET, Xamarin Studio (Android, iOS & Forms) & Monodevelop.
Post Reply
amol
Advanced
Posts: 231
Joined: Tue Mar 29, 2005 5:00 am

Resize Rectangle Tool

Post by amol » Wed Oct 29, 2014 11:57 am

Hi Steema Support,
When we resizes the application window then teechart manages appearance of all the series, legend ,ticks etc. according to window size or we can say it manage its GUI as screen resolution. But when we use Rectangle tool in teechart and resizes the application window, whole graph maintains its GUI except Rectangle tool i.e. on resizing the application window Rectangle tool size and its text does not grows and shrinks as per screen resolution of application window.
As shown in fig.
when application window is maximized.
img1.png
Image1
img1.png (46.62 KiB) Viewed 4542 times
When application window is resized : In this case application window size is small then rectangle tool covers its whole plot as shown in fig. We want to resize(rectangle tool and its text) as application window size.
img2.png
Image2
img2.png (25.19 KiB) Viewed 4539 times
It will so helpful for us if you please provide any alternative solution.

Thanks in advance.


Thanks and Regards
Plano research

Christopher
Guru
Posts: 1603
Joined: Fri Nov 15, 2002 12:00 am

Re: Resize Rectangle Tool

Post by Christopher » Thu Oct 30, 2014 9:52 am

Have you tried changing the font size in the resize event, e.g.

Code: Select all

    RectangleTool tool;
    private void InitializeChart()
    {
      tChart1.Series.Add(typeof(Line)).FillSampleValues();

      tool = new RectangleTool(tChart1.Chart);
      tool.Shape.Transparency = 0;
      tool.Text = "This is" + Utils.NewLine + "some example" + Utils.NewLine + "multiline text";
      tool.Left = 200;
      tool.Top = 150;
      tool.AutoSize = true;

      tChart1.Resize += tChart1_Resize;
    }

    void tChart1_Resize(object sender, EventArgs e)
    {
      tool.Shape.Font.Size = 4;
    }
Best Regards,
Christopher Ireland / Development & Support
Steema Software
Avinguda Montilivi 33, 17003 Girona, Catalonia
Tel: 34 972 218 797
http://www.steema.com
Instructions - How to post in this forum

Post Reply