having axis features, but not showing labels.
Posted: Fri Mar 17, 2006 1:05 pm
Hi,
I want to have the grid features, and be able to draw a line at a value, but i don't want to be able to see the axis labels (values). I think that this means I can't use "tChart1->Axes->Bottom->Labels->Visible = false;", because that removes the grid, and when i use the same on the left axis, it stops colorLine from working
Could you help?
Cheers,
Andy
I want to have the grid features, and be able to draw a line at a value, but i don't want to be able to see the axis labels (values). I think that this means I can't use "tChart1->Axes->Bottom->Labels->Visible = false;", because that removes the grid, and when i use the same on the left axis, it stops colorLine from working
Code: Select all
tChart1->Aspect->View3D = false;
tChart1->Axes->Bottom->Automatic = false;
tChart1->Axes->Bottom->Inverted = true;
tChart1->Axes->Bottom->Increment = 60;
// can't use...
// tChart1->Axes->Bottom->Labels->Visible = false;
Cheers,
Andy