or
| columnname | valuedata |
| < 20 days | 112 |
| <= 50 days | 532 |
| <= 90 days | 40 |
| > 90 days | 168 |
protected void CreateChart() { RadChart chartObj = new RadChart(); chartObj.SkinsOverrideStyles = false; chartObj.ChartTitle.TextBlock.Text = "No of Items"; chartObj.Size = new Size(800, 600); chartObj.ItemDataBound += new EventHandler<ChartItemDataBoundEventArgs>(chartObj_ItemDataBound); chartObj.DataManager.DataSource = _objBLL.GetData(); chartObj.DataManager.LabelsColumn = "ColumnName"; chartObj.IntelligentLabelsEnabled = true; chartObj.DataBind(); chartObj.Series[0].Type = ChartSeriesType.Pie; chartObj.Series[0].Name = "Days"; chartObj.Series[0].Appearance.LegendDisplayMode = ChartSeriesLegendDisplayMode.ItemLabels; chartObj.Update(); this.Controls.Add(chartObj); } protected void chartObj_ItemDataBound(object sender, ChartItemDataBoundEventArgs e) { if (e.SeriesItem != null) { DataRowView dtView = e.DataItem as DataRowView; if (dtView != null) { e.SeriesItem.Label.TextBlock.Text = string.Format("{0}%", dtView["ChartValue"]); } } }


Hello
i'm using the 2012 Q2 release and when i try to use the value from maskededitbox it doesn't works
if i have this mask: 000-000-0000 and used the value property it will bring me the same mask
and in the RadGridView if i use the Mask Column no matter what kind of mask i tried to use it doesn't works
thanks
private void Calendar_ElementRender(object sender, RenderElementEventArgs e){ foreach (RadCalendarDay date in ((RadCalendar)sender).SpecialDays) { if (e.Day.Date == date.Date) { e.Element.BackColor = Color.Red; return; } }}
var column = new GridViewHyperlinkColumn() { FieldName = sColumnNames[i], HeaderText = sColumnDisplayNames[i], HeaderTextAlignment = ContentAlignment.MiddleLeft, TextAlignment = ContentAlignment.MiddleCenter }; rgvWidget.Columns.Add(column);