Hi,
My program was originally using a different grid but we are now changing over to radgridview, on several of our grids you enter an ID in the first column and it runs a function to get the rest of the information such as Description e.t.c . I am trying to use EndEdit to call the function to get the part but its default functionality is to re-populate the ID ,is there a way to repopulate the Cell the user has just finished editing,I am using VB.Net. The function must be called once the part has been entered
The Waterfall series does not seem to handle negative values always correctly.
Sometimes the waterfall does not go lower than 0. But sometimes it does.
Maybe the documentation on how , whether and why to add SumPoints and TotalPoints is somewhat incomplete.
var ws =
new
WaterfallSeries();
ws.DataPoints.Add(
new
Telerik.Charting.WaterfallDataPoint(1.0,
false
,
false
));
ws.DataPoints.Add(
new
Telerik.Charting.WaterfallDataPoint(2.0,
false
,
false
));
ws.DataPoints.Add(
new
Telerik.Charting.WaterfallDataPoint(3.0,
true
,
false
));
ws.DataPoints.Add(
new
Telerik.Charting.WaterfallDataPoint(-10.0,
false
,
false
));
if I have just this, it comes out like in picture "withoutEnd".
It does not end up with -7, as I would expect. Ist just ends with 0.
When I add a Total Point at the end
ws.DataPoints.Add(new Telerik.Charting.WaterfallDataPoint(-10.0, false, true))
The display changes, but the total is not display, and it's still all wrong.
When I add a Summary Point at then end
ws.DataPoints.Add(new Telerik.Charting.WaterfallDataPoint(-10.0, true, false))
The result becomes correct. (The left axis is starting at -8)
So I can find a solution that works for me.
But I'm not sure, do I missread the (rare) documentation,
or may be there is a bug in the display algorhithms.
If I make all GridItems invisible, then the plus sign remains in RadPropertyGrid for Font item.
Example:
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
Make();
}
private void Make()
{
radPropertyGrid1.SelectedObject = new Item();
foreach (var item in radPropertyGrid1.Items)
{
if (!(item.Value is Font)) continue;
foreach (var subItem in item.GridItems)
{
subItem.Visible = false;
}
}
}
public class Item
{
[DisplayName("Font"), Category("Font")]
public Font Id { get; set; }
public Item()
{
Id = new Font("Arial", 12, FontStyle.Regular);
}
}
}
Hi, I'm having problems with Saving/Loading layouts.
I'm saving automatically the layout of all my tables to XML files, with "SaveLayout" method, I don't do anything additional.
When the application starts, all that XML files saved, are loaded with "LoadLayout" method. I don't know why, but in some cases, I'm getting this error on LoadLayout:
NotSupportedException ocurred.
Exception thrown: 'System.NotSupportedException' in System.dll
Additional information: CultureInfoConverter cannot convert from (null).
I've tried to reduce the structure of the table doing it simpler, (decreasing the number of columns, and removing hierarchy), but I'm getting the same error.
Thanks in advance.
Hello ,
how to add new controls in Rad item collection editor,I have list of controls but i need to add RadCheckedDropdownList in collection and use it in RadRibbonTab of RadRibbonForm.
Thanks in Advance.