Avoid Gap between DateTime Axis ....
Posted: Mon Dec 26, 2005 10:06 am
I searched forum and couldnt find solution ..I could only find trick ..
So i made trick as u point ...
Will you plan add property like IgnoreNullDateTime....Or what is the best choice to implement this request to performance and maintenance..
And Extra question : I have three charts. and one of them is "Main Chart"..
All of them have to have same bottom axes..
How could i set gridlines of the other charts from gridlines of MainChart...
So i made trick as u point ...
Code: Select all
void RasChart_BeforeDrawAxes(object sender, Steema.TeeChart.Drawing.Graphics3D g)
{
if (this.Series.Count != 0)
{
(sender as RasChart).Series[0].Labels = Program.sl;
//I store labels to Program.sl
}
}
And Extra question : I have three charts. and one of them is "Main Chart"..
All of them have to have same bottom axes..
How could i set gridlines of the other charts from gridlines of MainChart...