Hi steema support,
We are facing some time grid line missing issue for bottom axis. We are using t chart in silverlight application.
please see below image. Without bottom axis grid lines.
Now i am showing this image with grid lines.
This issue is coming with us please provide some solution. we are doing chart refresh but it is happening.
Thanks
Plano Research
Grid Line issue- Some time grid lines not showing for bottom
-
- Guru
- Posts: 1603
- Joined: Fri Nov 15, 2002 12:00 am
Re: Grid Line issue- Some time grid lines not showing for bottom
Hello!
I'm having a little difficulty reproducing this one here - if I use the following code in a Silverlight project:
This gives me the following:
and
would you please be so kind as to retouch the above example so I can reproduce your issue here?
I'm having a little difficulty reproducing this one here - if I use the following code in a Silverlight project:
Code: Select all
public MainPage()
{
InitializeComponent();
InitializeChart();
}
private void InitializeChart()
{
tChart1.Series.Add(typeof(Steema.TeeChart.Silverlight.Styles.Line)).FillSampleValues();
tChart1.Axes.Bottom.Title.Text = "Bottom axis title";
}
private void button_Click(object sender, RoutedEventArgs e)
{
tChart1.Axes.Bottom.Grid.Visible = !tChart1.Axes.Bottom.Grid.Visible;
}
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 |