Infragistics Home

Infragistics Forums

Infragistics community online discussions.
Welcome to Infragistics Forums Sign in | FAQ
in Search

how to give input to web chart

Last post 06-23-2008 14:45 by [Infragistics] Max Rivlin. 1 replies.
Page 1 of 1 (2 items)
Sort Posts: Previous Next
  • 06-23-2008 12:14

    how to give input to web chart

    Hi,

    Shall i pass a one full column value of table as a input to infragistics web chart Axis?..

    is it possible?..

    please explain how to give input to web chart.

    Arulanandham
    Filed under:
    • Post Points: 20
  • 06-23-2008 14:45 In reply to

    Re: how to give input to web chart

    The way the chart's databinding works is you assign your table to chart.Data.DataSource property and call chart.Data.DataBind()

    myChart1.Data.DataSource = myDataTable;
    myChart1.Data.DataBind();

    this generates the axes, datapoints and the rest of the chart image.

    If you need to set min/max intervals on your axis, use
    myChart1.Axis.Y.RangeMin/RangeMax/RangeType properties

    Axes cannot be directly bound to table columns.

    • Post Points: 5
Page 1 of 1 (2 items)
Powered by Community Server (Commercial Edition), by Telligent Systems