

Hi,
I have two question about RadCalendar multi-view mode, annual visualization.
What I try to do di edit each month name, on header, putting in it the counter of SpecialDays for each month. It's a company holiday calendar, so I need to show, for every month, the total working days (365 - SpcialDays.where(Date.Month == currentMonth, just for example). How I can achieve this behavior?
Second. Seems to be a problem with the control, in full year view. What happen is that if I set MinDateRange/MaxDateRange of the multi-view on values 01/01/2018-31/12/2018, and I set FocusedDate and SelectedDate on first date on interval (1/1/2018), with a layout of 2 rows and 6 columns, setting by code currentViewRow and currentViewColumn to 0/0, what I get as result is the print-screen attached. This will not happen in any other year (before 2017 and after 2018). I think the problem is due to that 22 august 2017 in today date and august month was badly placed as column/row 0-0 by the control himself.
This piece of code is what I use to set the control layout:
<code>
if (today.Year == year)
{
colForCurrentDate = today.Month <= 6 ? today.Month - 1 : today.Month - 7;
rowForCurrentDate = today.Month <= 6 ? 0 : 1;
calendar.FocusedDate = DateTime.Now.Date;
}
else
{
calendar.FocusedDate = calendar.RangeMinDate;
colForCurrentDate = 0;
rowForCurrentDate = 0;
}
calendar.CurrentViewColumn = colForCurrentDate;
calendar.CurrentViewRow = rowForCurrentDate;
</code>
Is this a bug of the RadCalendar? What I can do in order to resolve this?
Thanks in advance!
Hello,
There appears to be an issue making tool window width adjustments via the splitters in a DPI aware app. Dragging a splitter with the mouse will eventually hide the document window as the tool window makes large changes when only small changes are wanted. This can be demonstrated with a new app with a RadDock control dropped on the form. Add 2 tool windows and 1 document window. Make the app DPI aware. Run the app at 150% and try making small width changes to either of the tool windows. The tool window will make a couple of large jumps and then completely hide the document window. It also doesn't matter which way you drag the tool window as the same phenomenon occurs.
Telerik Control Version: 2017.2.613.40
Framework 4.52 or higher.
Best regards,
Robert
Hi,
I'm wondering if we could customize a chartView Legend to display a checkbox instead of default colored square.
The aim is the have the possibility to show/hide the related serie.
Regards,
Pixie


On certain forms, I want boderless Radbuttons.
I dont see a ShowBorders property, am I just missing it?

I'm trying to add clickable rectangles to a diagram, but the event handler doesn't execute. Why?
Thank you far any help!
private void button1_Click(object sender, EventArgs e) { var shape1 = new RadDiagramShape() { ElementShape = new RoundRectShape(0), Position = new Telerik.Windows.Diagrams.Core.Point(50, 50), Height = 100, Width = 100, BackColor = System.Drawing.Color.White, BorderBrush = new SolidBrush(System.Drawing.Color.Black), DrawBorder = true, ShouldHandleMouseInput = true, IsConnectorsManipulationEnabled = false, IsEditable = false, IsRotationEnabled = false, IsDraggingEnabled = false }; shape1.MouseClick += shape_Click; radDiagram1.AddShape(shape1); radDiagram1.SelectionMode = Telerik.Windows.Diagrams.Core.SelectionMode.None; } private void shape_Click(object sender, EventArgs e) { ; }
I want to add a condition on GridViewCheckboxColumn click event, requirement is 'when checkbox is clicked event should be fired.'
Currently i applied GridViewCell_Click event but it fired on current Cell not particularly on checkbox, and i don't want to use Cell_ValueChanged event according to my programming scenario because it reflects a lot of change in my code.
What should i do?
c# programming language
Hai
In My Project I have Three GridFields. In Three GridFields Editor is Required,So it is Possible to Create Control Array for that GridFields.
