I've been thinking about it for a few days and couldn't find a solution, so I'm asking for help.
This chart displays product weight values.
In this chart, I want to draw a line according to the change condition of the maximum and minimum criteria.
In this chart, there is no problem in drawing lines without changing based on the minimum and maximum settings.
However, if the min and max values are changed in the middle, I want to draw a new line based on that criteria.

We have a customized save option and is implemented under the File --> Save (overridden) method. However, the default Ctrl+S is opening up the Savefiledialog and the users are enabled to save a copy. We need to restrict the save to the local disk. Any options on how to override all the possible save options?
Thanks,
Kishore

I am required to call an API endpoint, which is return a list of strings. This I have working.
Each item within that list is a daily announcement which is a block of text, that needs to be displaying within a scrolling parent frame. Please refer to the attached .PNG file with a screenshot of the mockup I got from our project managers.
I am not sure which is the best way to do this, as I'm relatively new to Telerik Winform UI. I am looking at either a:
DataGridView
ListControl
List of labels within a panel.
Just trying to find the most effective and simple way to do this. Any suggestions?


Hi,
Am using a telerik winform that contains a telerik textbox and the form can be resized which in turn would resize the textbox as well.
When we enter long text in the textbox and resize the textbox the text is not scrolled to show the text and cursor is at the end of the text which is fine.
For instance, in the image below the text is hidden and after resizing the text should scroll to show text depending on the length of the textbox.
Could you please help with a suitable solution, thank you!

Hello
I want to be able to modify the text content of the control programmically at runtime. Below is the code I have tried :
Placeholder does not change the content Dim content_controls As IEnumerable(Of SdtRangeStart) =
Me.radRichTextEditor1.Document.GetAnnotationMarkersOfType(Of SdtRangeStart)()
For Each item In content_controls
'MsgBox("Type: {0} ID:{1}", item.SdtProperties.Type, item.SdtProperties.ID)
'MsgBox("Type: {0} ID:{1}", item.SdtProperties.Type, item.SdtProperties.ID)
If item.SdtProperties.Type = SdtType.Text Then
Dim properties As TextProperties = TryCast(item.SdtProperties, TextProperties)
If properties.Tag IsNot Nothing AndAlso properties.Tag.ToUpper = "SERIALNO" Then
properties.Placeholder.PlaceholderText = "DWF324434244242"
properties.Placeholder.ShowPlaceholder = True
End If
End If
Next

Hello,
I am doing the following to rename a worksheet:
Worksheet workSheet = sheetReturns.SpreadsheetElement.Workbook.Sheets.Add(SheetType.Worksheet) as Worksheet;
workSheet.Name = "Missing Top 100";
dtProvider.Import(_missingTop100, workSheet);
sheetReturns.SpreadsheetElement.Workbook.ActiveWorksheet = workSheet;
workSheet.Columns[workSheet.UsedCellRange].AutoFitWidth();
The new name of the sheet does not show unless another worksheet is added or I double click on the worksheet tab.
How can I code this so the new name shows immediately?
Thanks,
Doug


I have a RadMenu in a new application where I set the Font property to "Segoe UI 9pt". While all the top-level menu items appear as expected, the drop-downs revert back to "Segoe UI 8.25pt". Aren't the Font properties ambient? I really don't want to have to explicitly set all the RadMenuItem.Font properties.
What am I missing?
As a related follow-up, I would have expected the RadMenu, RadCommandBar, and RadStatusStrip's Font properties to be ambient also, and default to the Form's Font.
This is day two of my evaluation of the library.
