Hello, I need to create graphs in windows form in dynamic ways, this is working correctly, but I would like the graphic to be offline, since it is bar graph, could anyone 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);
}