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.
Hello,
I came across a weird behavior of a winforms application when using MS Windows setting of Display Scale to 125%.
After exporting a radgridview to an Excel file, the application shrinks. Controls' sizes are smaller and Captions don't fit anymore.
See attachments with a state before exporting and after. I also included a sample app. It only happens with a Display Scale larger than 100%.
Best regards,
Tomáš
Hi,
I want to apply two different font styles for the hostwindow title text in Winforms RadDock. For example, If the title is "Tools - Crop", then it should be like below
Tools - Crop
Is it possible to achieve this?
Thanks
Hai EveryOne,
i have a problem from my grafik chart line series..
i want to set no blur if the grafik vertical, but if the line horizontal. the line not blur when zoom..
how this solustionn,,,
tihis is source code section
LineSeries series = new LineSeries();
series.CategoryMember = "MonthName";
series.ValueMember = "TotalAsset";
series.DataSource = m_LineChartList;
series.PointSize = new SizeF(7, 7);
series.SmoothingMode = System.Drawing.Drawing2D.SmoothingMode.HighQuality;
//test
//series.SmoothingMode = System.Drawing.Drawing2D.SmoothingMode.AntiAlias;
//series.InterpolationMode = System.Drawing.Drawing2D.InterpolationMode.HighQualityBicubic;
//series.CompositingQuality = System.Drawing.Drawing2D.CompositingQuality.HighQuality;
//series.TextRenderingHint = System.Drawing.Text.TextRenderingHint.ClearTypeGridFit;
series.Padding = new Padding(20);
series.IsVisible = true;
series.LinesToLabelsColor = Color.FromArgb(0, 0, 0);
series.BackColor = Color.FromArgb(0, 50, 0);
series.BorderColor = Color.FromArgb(0, 50, 0);
thanks every one
I have a radgridview that I've enabled pasting. Everything works great but for some reason when I right click and hit paste no matter how many rows I'm coping the pasting event fires twice thus duplicating the input rows.
private void RgvSup_Pasting(object sender, Telerik.WinControls.UI.GridViewClipboardEventArgs e)
my actual width is 3.14 inch but the print not in the correct size
using code
rvInvoiceViewer.PrintReport()
Greetings,
I have got some questions about the GridViewPdfExport object:
Question 1: I set ExportVisualSettings property to true, but it doesn't apply cells' back and fore colors when exporting to PDF. My associated RadGridView's cells are colorful (columns are in different back and fore colors) and I need the GridViewPdfExport object to export the RadGridView customization the same way a RadPrintDocument does.
Question 2: For some of my clients, I'm using Arabic and Persian languages (and fonts) in my RadGridViews. When using GridViewPdfExport object, texts are Spell Backwards . For example, if first column's header text is "نام", it exports it as "م ا ن ". I tired exporting data using ExportToPDF object, Handling the HTMLCellFormatting event as it is documented in the RadFridView PDF export documentations, but I guess it only supports left-to-right languages, or maybe, I'm not using an appropriate Unicode font in this case (I also tried Arial Unicode MS, but the texts are printed like ####-##). What's the solution for the languages I mentioned ?