hello Telerik!
can i change hamburger menu (☰) to my own icon/png and show another icon when menu expand?
another question: like css, set animation to change icon/png/svg for collapse/expand ?
I have been trying to turn a stacked barchart to be horizontal - and must be misunderstand what must be a simple solution to my problem.
using the Telerik Example for a stacked barChart - how do I set this so that the Representatives are on the vertical axis and the performance values are on the bottom horizontal axis as shown in the attached image.
Thank you in advance
Dim barSeries As New Telerik.WinControls.UI.BarSeries("Performance", "RepresentativeName")
barSeries.Name = "Q1"
barSeries.DataPoints.Add(New CategoricalDataPoint(177, "Harley"))
barSeries.DataPoints.Add(New CategoricalDataPoint(128, "White"))
barSeries.DataPoints.Add(New CategoricalDataPoint(143, "Smith"))
barSeries.DataPoints.Add(New CategoricalDataPoint(111, "Jones"))
barSeries.DataPoints.Add(New CategoricalDataPoint(118, "Marshall"))
Dim barSeries2 As New Telerik.WinControls.UI.BarSeries("Performance", "RepresentativeName")
barSeries2.Name = "Q2"
barSeries2.DataPoints.Add(New CategoricalDataPoint(153, "Harley"))
barSeries2.DataPoints.Add(New CategoricalDataPoint(141, "White"))
barSeries2.DataPoints.Add(New CategoricalDataPoint(130, "Smith"))
barSeries2.DataPoints.Add(New CategoricalDataPoint(88, "Jones"))
barSeries2.DataPoints.Add(New CategoricalDataPoint(109, "Marshall"))
RadChartView2.Series.Add(barSeries2)
barSeriesQ1.CombineMode = ChartSeriesCombineMode.Stack
barSeries2.CombineMode = ChartSeriesCombineMode.Stack
Hello I can't find how to programmatically add controls into a RadCollapsibleControl
From the documentation I thought I should add to the
CollapsiblePanelLayoutElement
But I do not find access to this element.
Thanks in advance
Pierre-Jean
I am trying to export a RadGridView to excel and running into a few hiccups. I've been able to to work around these but would like to know if there is a better approach I could/should take.
1.) When exporting to excel the RadGridView seems to only support .xls extension rather than .xlsx. These means the first time the user opens the file in excel they get prompted to reformat and re-save. To work around this currently I am using excel interop to open the file in the back ground and re-save it as .xlsx.
Is there a way to save it directly as a .xlsx?
2.) The export method of the RadGridView appears to only support saving directly to a file.
Can the export be streamed so that it is opened with out having to create a temp file so that when saved the user is forced to select a save location and name (this may be more of an issue with excel rather than telerik)?
3.) I did not see an option to be able to export and preserve pinned columns and pinning the headers in the excel file, currently doing this using excel interop.
Is there a way to export with pinned columns pinned in the excel file and pinning the header row?
Below is the approach I am currently taking to accomplish the above would like to be able to clean it up if there are any built in options.
public
static
void
ExportToExcel(
this
RadGridView grid)
{
Microsoft.Office.Interop.Excel.Application excel =
null
;
Workbooks wbs =
null
;
Workbook wb =
null
;
Sheets sheets =
null
;
Worksheet sheet =
null
;
Window activeWindow =
null
;
var fileName =
string
.Format(
"{0}-{1}"
,
"SoftproExtract"
, DateTime.Now.ToString(
"yyyyMMdd-hhmmss"
));
var extension =
"xls"
;
string
tempPath =
string
.Format(
"{0}{1}.{2}"
, Path.GetTempPath(), fileName, extension);
string
userPath =
string
.Empty;
try
{
var exporter =
new
ExportToExcelML(grid) { HiddenColumnOption = HiddenOption.DoNotExport, HiddenRowOption = HiddenOption.DoNotExport, ExportVisualSettings =
true
, SummariesExportOption = SummariesOption.DoNotExport };
exporter.RunExport(tempPath);
excel =
new
Microsoft.Office.Interop.Excel.Application { Visible =
false
, Interactive =
false
};
excel.DefaultFilePath =
""
;
wbs = excel.Workbooks;
wb = wbs.Open(tempPath);
sheets = wb.Sheets;
sheet = sheets[1];
sheet.Activate();
activeWindow = excel.ActiveWindow;
activeWindow.SplitRow = 1;
activeWindow.SplitColumn = grid.Columns.Count(x => x.PinPosition == PinnedColumnPosition.Left);
activeWindow.FreezePanes =
true
;
extension =
"xlsx"
;
userPath =
string
.Format(
"{0}\\{1}.{2}"
, Environment.GetFolderPath(Environment.SpecialFolder.MyDocuments), fileName, extension);
wb.SaveAs(userPath, XlFileFormat.xlWorkbookDefault);
}
catch
(Exception ex)
{
ex.WriteLog();
ex.Show();
}
finally
{
if
(wb !=
null
)
wb.Close();
if
(excel !=
null
)
excel.Quit();
Marshal.ReleaseComObject(activeWindow);
Marshal.ReleaseComObject(sheet);
Marshal.ReleaseComObject(sheets);
Marshal.ReleaseComObject(wb);
Marshal.ReleaseComObject(wbs);
Marshal.ReleaseComObject(excel);
if
(File.Exists(tempPath))
File.Delete(tempPath);
}
if
(File.Exists(userPath))
Process.Start(userPath);
}
I have a RadForm with RadCollapsiblePanel docked left and a RadStatusStrip on bottom docked.
How is it possible to dock/fix the Statusbar complete on bottom and dock the CollapsiblePanel on the StatusBar?
The CollapsiblePanel is always left to the StatusBar and resize it.