Click here to Skip to main content
15,881,715 members
Please Sign up or sign in to vote.
1.00/5 (5 votes)
Hi everyone,

I wanna update my candle stick chart on every minute (without just re assigning data table to chart's data source again and again)

this is where my data insertion is going on in DATA TABLE

C#
chartDataTable.Rows.Add(
data.DateTime, 
data.Open, 
data.Close, 
data.High, 
data.Low,
Convert.ToDouble(Convert.ToDouble(data.Volume) / 1)
);


and somewhere below, i am updating my candle stick chart using above ('chartDataTable' data table),shown :

C#
candleChartSeries2D.DataSource = "";
candleChartSeries2D.Points.Clear();
candleChartSeries2D.DataSource = dTcharts;


Anyone help please??? its urgent :(
Posted

1 solution

Considering the abuse you've handed out over the time since you posted this question, it's extremely unlikely you're ever going to get an answer.

Have a nice life.
 
Share this answer
 
Comments
[no name] 9-Sep-14 13:52pm    
Hahahaha, I've solved the issue myself :P
Don't need anyone now :P

BTW thanks ;)

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900