I plan to use WPF (VS2013).
It seems Binaries folder doesen't have Telerik.Windows.Themes.*.dlls.
Can you share some material to explain the difference between these two sets of binaries?

Hi,
I'm new to Telerik and I use a trial version of telerik devcraft.
I'd like to use a Desktop Alert in VB.Net and WPF but I don't know how, and I don't find any documentation for it. Can you explain me how to use it ?
Thanks,
Clément.
Hi All,
is there a way to configure the dropdown caledar to show additional months like in the attached picture?
Thank you
Regards,
Wolfgang
Switching from "ExportToXlsx" to "SpreadStreamExportFormat" but not clear on how to use the select item feature to export only items selected.
code I currently have: --
void OnExportDataCommandExecute(RadGridView param)
{
string fileFormat = "xlsx";
GridViewSpreadStreamExport spreadStreamExport = new GridViewSpreadStreamExport(param);
spreadStreamExport.SheetName = "Sheet1";
spreadStreamExport.ExportFormat = SpreadStreamExportFormat.Xlsx;
var dialog = new SaveFileDialog()
{
DefaultExt = fileFormat,
Filter = string.Format("(*.{0})|*.{1}", fileFormat, fileFormat)
};
if (dialog.ShowDialog() == true)
{
switch (fileFormat)
{
case "xlsx":
spreadStreamExport.RunExport(dialog.FileName.ToString(),
new SpreadStreamExportRenderer(),
new GridViewSpreadStreamExportOptions()
{
ShowColumnHeaders = true,
ShowColumnFooters = true,
ExportDefaultStyles = false,
});
break;
case "pdf":
//param.ExportToPdf(stream);
break;
}
}
}
--
I see not method for include selected.item or such.
hi
how can i change cells fontfamily and fontsize?
in UI and code behind
Is there a way I can wire up hyperlinks to open when the user clicks on them with the middle mouse button?
Hallo,
I am using this code to fill the Editor With code:
public void Test(){ using (StreamReader reader = new StreamReader("../../ViewModels/ShellViewModel.cs", Encoding.UTF8)) { SyntaxEditor.Document = new TextDocument(reader); } CSharpTagger cSharpTagger = new CSharpTagger(SyntaxEditor); SyntaxEditor.TaggersRegistry.RegisterTagger(cSharpTagger);}
This does not Show any result. The SyntaxEditor is initialized and editable. But the code from ShellViewModel.cs is not showing (it is correctly loaded in the reader). Also when I type keywords into the editor, they are not highlighted. The SyntaxEditor.Document.CurrentSnapshot also does show that at least something is loaded (correct lenght and linecount).

I am creating a dynamic chart with a seriesdescriptorselector that changes the type of the X-axis (DateTimeContinuous or Linear) based on user defined settings. I am also setting a grid for the horizontal and vertical axis of the chart. The problem I am having is that only the horizontal lines of the grid are showing up on the chart. I get no vertical lines at all regardless of whether the horizontal axis is Linear of DateTimeContinuous. Does the use of a series descriptor selector invalidate the grid lines for the axis?
Thank you
