1
Hello, I need to create graphics in windows form of dynamic forms, this working correctly, however I would like the graph to be of line, and this generating of bars, anyone could help me? Code:
private void FrmGrafico_Load(object sender, EventArgs e)
{
GraficoDS.LinhaRolosDataTable dt = new GraficoDS.LinhaRolosDataTable();
LinhaRolosTableAdapter ta = new LinhaRolosTableAdapter();
ta.Fill(dt, IDLinhaRolos);
chartGrafico.DataBindTable(dt);
}
What kind of
chartGrafico
?– Jéf Bueno
is one of the components of windows form, Chart.
– Carlos Eduardo