Here is a sample BarSeries:
01.BarSeries barSeries = new BarSeries("Performance", "RepresentativeName");02.barSeries.Name = "Q1";03.barSeries.DataPoints.Add(new CategoricalDataPoint(177, "Harley"));04.barSeries.DataPoints.Add(new CategoricalDataPoint(128, "White"));05.barSeries.DataPoints.Add(new CategoricalDataPoint(143, "Smith"));06.barSeries.DataPoints.Add(new CategoricalDataPoint(111, "Jones"));07.barSeries.DataPoints.Add(new CategoricalDataPoint(118, "Marshall")); 08.this.radChartView1.Series.Add(barSeries);09.BarSeries barSeries2 = new BarSeries("Performance", "RepresentativeName");10.barSeries2.Name = "Q2";11.barSeries2.DataPoints.Add(new CategoricalDataPoint(153, "Harley"));12.barSeries2.DataPoints.Add(new CategoricalDataPoint(141, "White"));13.barSeries2.DataPoints.Add(new CategoricalDataPoint(130, "Smith"));14.barSeries2.DataPoints.Add(new CategoricalDataPoint(88, "Jones"));15.barSeries2.DataPoints.Add(new CategoricalDataPoint(109, "Marshall"));16.this.radChartView1.Series.Add(barSeries2);How can I
1) Asign some value (e.g, an Id) to a BarSeries?
2) Asign a ContextMenu to a BarSeries to get its Id?

Is there a way to set alignment (like right, center) of CaptionText and ContentText?
Kind regards...

Hello,
How can I hide aggregators and column descriptors areas (see attached image)?
So far I found what I can execute the following code
pivotGrid.PivotGridElement.AggregateDescriptorsArea.Visibility = ElementVisibility.Collapsed;pivotGrid.PivotGridElement.ColumnDescriptorsArea.Visibility = ElementVisibility.Collapsed;and these areas will not be visible, but their placeholder still be displayed, i.e. empty rectangle at the top of the pivot grid. How can I completely collapse these areas?

Dear All,
I need a radgridview with PageSize = 20; which i want fill datasource by pagesize and current page index changed,
Ex: in Database i have record 100, so in my radgrid datasource i will fill with VirtualItemRecordCout = 100, which will generate 5 page, and fill page 1 only 20 rows from database rownum selection, and when i changed my radgrid index to page 2, i will fill my datasource from rownum 20 till 40 from my record nums in database selection.
in ASP telerik radgridview have property VirtualItemCount, how about in WinForms ? i really need cause i have lazy record, and its so long if i much select all,
I need your great solution.
Thanks.

Hello,
I use RadListView in ListView mode. Each tic of mouse wheel, the RadListView scrolling three lines (rows).
I want to scroll only one line. How can I do this?
Kind regards.
Hi to all,
I would apply a filter descriptor on column and I don't what that user can apply any filters.
But, my filter descriptor has any effect if I set EnableFiltering = False
How can I do it?
I use the following code to change fonts size in print:
1.void grid_PrintCellFormatting(object sender, PrintCellFormattingEventArgs e)2.{3. e.PrintCell.Font = new Font("Tahoma", 14, FontStyle.Regular);4.}Now, how can I make auto size the rows height in print without using the AutoSizeRows property of grid?

Hello all,
i have issue when filtering column, actually i want reoad my datasource when filterChanged, bbuut filterchanged always return before i completely what i type
Ex , when i wan filter By : " Data", D first enter in filterChanged event, i am really just need completely like " Data"
so i think if i can catch event enter in FilterChanged event it solve my issue, tell me how its work?
this below my snippet code :
private void RadGridMsHost_FilterChanged(object sender, GridViewCollectionChangedEventArgs e)
{
// i want use code like this, how to catch event enter in this section
if(xxx = enter)
FillRadGrid();
}
Please fast response,

Hello,
I have a RadTrackBar that has an odd scale. The minimum value is 0 and the maximum value is 5, but the large tick frequency is 3. I'd like to show a label at the last position of the trackbar (at the 5). Is this possible?
Look at the attached file for an example. I would like to show a label at the very right hand side of the trackbar.
Thank you!

