2
Answers

C# + Crystal reports chart

Michal

Michal

15y
6.1k
1
Hi there,

I`m a bit new here and can`t find solution for my problem. I want make some kind of a muti-chart (2 charts in one) - one line chart and second like rectangle at specific position.



And I can`t find taht option. I have 2 tables in mdb, and can manage draw single chart. But later, I can`t make second chart in first one from e.g. 3 to 4 on X axis. Thanx a lot.
Answers (2)
0
Sukesh Marla

Sukesh Marla

NA 11.8k 1.2m 12y
in  "PageIndexChanging"  you have to rebind the datagrid as 

protected void grdView_PageIndexChanging(object sender, GridViewPageEventArgs e)
{
    FillGrid();
    grdView.PageIndex = e.NewPageIndex;
    grdView.DataBind();
}

Try this


Check this is correct answer if it helped.