Is there the way to fix the position of some items in CommandBarStripElement so those items are always visible and could not be moved to the overflow.
I guess it is pointless to override OnItemOverflowed as it is already too late, the item already moved to overflow menu. Isn't it?
Thanks.
Hi,
I got a radchartview with some scatterlineseries. When the user changes a parameter, the chart should be updated with a new series. That works but the old series is still on it. I tried radchartview.series.clear, but I would need something to clear/reset the whole chart before adding the new series.
How can i do that, please.

Hi,
First of all, kudos for having developed the chat control--I will be purchasing the Winforms UI license solely for this capability!
I noticed that the text of a ChatTextMessage can be HTML-formatted. When I create a hyperlink, it looks and acts like one, with the exception that the link target is not launched when I click on it. How can I overcome this?

Hi,
I'm in a need for a dialog form that in the end returns a FilePath OR a DirectoryPath, with a TextBox that the user can paste something (file or directory).
I tried doing so with a System.Windows.Forms.FolderBrowserDialog but without success.
I'm turning over Telerik, found the RadBrowseEditor and calling the RadBrowseEditor .BrowseElement.BrowseButton.PerformClick() method for opening.
The best/closest DialogType is BrowseEditorDialogType.OpenFileDialog, but the problem is when pasting a DirectoryPath, the control navigates there and no event is raised (same as the system's FolderBrowserDialog, it's even the same used from Telerik).
I tried listening to events ValueChanging and also all those under the BrowseElement object, but nothing works.
Any idea (I didn't want to create a new form, developping the navigation treeview, textbox, since almost everyhing is there)?
thanks

Hi,
I would like to add a secondary x-axis to my chart (having relative instead of absolute values) without a belonging data series. But I have problems to get this axis shown. With the following code, the axis is simlpy not shown:
// Secondary x-axis with percent values of current price LinearAxis horAx2 = new LinearAxis(); horAx2.VerticalLocation = AxisVerticalLocation.Bottom; horAx2.Minimum = Math.Round(_minX / ulPrice, 4); horAx2.Maximum = Math.Round(_maxX / ulPrice, 4); horAx2.MajorStep = Math.Round(ulPrice * 0.03 / ulPrice, 4); // 0.05; // 1 Prozent gerundet //Convert.ToInt16(units)*10; horAx2.Font = new System.Drawing.Font("Ubuntu", 10F, System.Drawing.FontStyle.Bold);
Is it possible to a secondary axis without a complementay data series?
Thank you


