How C # Chart binds data

Source: Internet
Author: User


The number of C#chart drawing curves determines whether your data source is a series. Series is the object you create on the fly.

One, array, List and other simple collection types of way
Series s1= new Series (); then bind the data to Chart1. series["S1"]. POINTS.DATABINDXY (Hdop, VDOP);
Two, the way of the DataTable

DataTable3 for your data source

Series datatable3series = new Series ("DataTable3");d AtaTable3Series.Points.DataBind (datatable3.asenumerable (), "date" , "Day development", "" ");d Atatable3series.xvaluetype = chartvaluetype.datetime;//set X-axis type as time Datatable3series.charttype = Seriescharttype.line;  Set the y-axis to polyline chart1.Series.Add (datatable3series);//Join your Chart1

How C # Chart binds data

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.