protected void approvedGrid_ItemDataBound(object sender, GridItemEventArgs e)
{
if (e.Item is GridFilteringItem)
{
GridFilteringItem filteringItem = e.Item as GridFilteringItem;
TextBox box = filteringItem["mandatory"].Controls[0] as TextBox;
box.Width = approvedGrid.MasterTableView.Columns[2].ItemStyle.Width;
//approvedGrid.MasterTableView.Columns[2].FilterControlWidth = approvedGrid.MasterTableView.Columns[2].HeaderStyle.Width;
}
}
I have a deadline on the 31st of December, and this is the last telerik-related thing I need to fix in my program in order to get it approved, I would soooooo appreciate a quick answer, you have no idea. :)
When I add around 10 DataSeries (with 15 points in each) to a Chart, the Chart resizes itself several times and the entire animation is very slow. I am sure there's something I need to do before or after calling the following line on my IEnumerable of charts, but I can't figure out what it is.
I'd would be really grateful for an answer.
myChart.DefaultView.ChartArea.DataSeries.AddRange( ... )