in
Forums
Blogs
Files
Devexpress.Com
ClientCenter
Support Center
DevExpress Channel

webchart control is not showing line chart every time

Last post 9/5/2008 5:07 AM by Alan (Developer Express). 1 replies.
Page 1 of 1 (2 items)
Sort Posts:
Previous Next
  • 8/29/2008 6:13 AM

    webchart control is not showing line chart every time

    i m using webchartcontrol for line chart. Some times this is displaying grakh some time not. my aspx  page contains 6 webchartcontrol on the form. my code is following

     

     

     

     

     

     

     

     

     

    Series series1 = new Series("Gravity Series", ViewType.Line);

    series1.ArgumentScaleType =

    ScaleType.Qualitative;

    ((LineSeriesView)series1.View).LineStyle.DashStyle = DashStyle.Solid;

     

     

    // Add points to it.

     

     

    for (int x = 0; x < tb.Rows.Count; x++)

    {

    series1.Points.Add(

    new SeriesPoint(tb.Rows[x]["bdate"].ToString(), new double[ { double.Parse(tb.Rows[x]["gravity"].ToString()) }));

    }

    chartLineGravity.Series.Add(series1);

    chartLineGravity.Legend.Visible =

    false;

     Kindly help me because some times it displays graph some time not.

    atul

     

  • 9/5/2008 5:07 AM In reply to

    Re: webchart control is not showing line chart every time

    Hello Atul,

    Could you please clarify when this code is executed? Also, if you want to quickly find what causes this problem, I suggest that you contact our Support Team at http://www.devexpress.com/sc, send them your test project, and they'll certainly help you.

    @.
    R&D, .NET Team.

    PS. If you wish to receive direct assistance from our Support Team, use Support Center at http://www.devexpress.com/sc.
    Filed under:
Page 1 of 1 (2 items)
Copyright © 1998-2008 Developer Express Inc.
ALL RIGHTS RESERVED