- private void chartload()
- {
- DataTable myTable = new DataTable();
- DataView dv = new DataView(myTable);
- dv.RowFilter = (("Name='A'"));
- Chart1.Series[0].LegendText = ddllicense.SelectedItem.Text;
- Chart1.Series[0].BorderWidth = 2;
- Chart1.Legends["Legend1"].Position.Auto = true;
- Chart1.DataSource = dv;
- Chart1.DataBind();
- }
- protected void Timer1_Tick(object sender, EventArgs e)
- {
- chartload();
- }
4 Replies
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Dinesh SanthalingamPosted Dec 29, 2016, 10:59 PM
kalyan potharaju
kalyan potharajuPosted Dec 28, 2016, 6:36 AM
Dinesh SanthalingamPosted Dec 28, 2016, 3:57 AM
kalyan potharaju
kalyan potharajuPosted Dec 28, 2016, 3:55 AM