Problem with Axis Relabelling

TeeChart for Microsoft Visual Studio .NET, Xamarin Studio (Android, iOS & Forms) & Monodevelop.
Post Reply
bobcourtney
Newbie
Newbie
Posts: 4
Joined: Mon Dec 01, 2014 12:00 am

Problem with Axis Relabelling

Post by bobcourtney » Thu Jul 09, 2015 2:15 pm

I am moving some code written on VS2005 C++ with TeeChart for .NET v2 , recompiling using VS2013 C++ with TeeChart for .NET 2014 4.1.2014.12150

The old compile produces a great image but the new compile produces a chart were the right axis title overlaps the custom labels.
It worked before but doesn't work now - I haven't changed any of this code.

PS How to I add images to demonstrate this problem? The "Upload Attachment" says "The extension bmp is not allowed."

Thanks

Bob

I have been relabelling a right axis using the following code ( VS2013 c++ ) :

System::Void Relabel_Right_Depth_Axis(double depth_increment, double sound_speed)
{
this->tChart1->Refresh();
this->tChart1->AutoRepaint = false;
//this->tChart1->Axes->Right->Labels->Visible = false;
this->tChart1->Axes->Right->Labels->Items->Clear();
this->tChart1->Axes->Right->Minimum = this->tChart1->Axes->Left->Minimum;
this->tChart1->Axes->Right->Maximum = this->tChart1->Axes->Left->Maximum;
// min time
double tmin = this->tChart1->Axes->Left->Minimum;
double tmax = this->tChart1->Axes->Left->Maximum;
double dstart = depth_increment * Math::Round(0.75*tmin/depth_increment);
double dmax = 0.75*tmax;
while ( dstart <= dmax)
{
double t = dstart/0.75;
this->tChart1->Axes->Right->Labels->Items->Add(t, dstart.ToString());
dstart += depth_increment;
}
this->tChart1->AutoRepaint = true;
//this->tChart1->Axes->Right->Labels->Visible = true;
this->tChart1->Refresh();
}

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

Re: Problem with Axis Relabelling

Post by Christopher » Fri Jul 10, 2015 8:44 am

Hello Bob,
bobcourtney wrote:PS How to I add images to demonstrate this problem? The "Upload Attachment" says "The extension bmp is not allowed."
There are some instructions on how to post to this forum here, which you may be interested in reading.

What would be more useful than an image, from our side, would be a short, self-contained, compilable example as explained here. Would you be so kind as to provide us with one? In this way we will be able to give you quick answer.
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