or
I am using VS2010 Premium and the most recent version of Telerik WinForms. I have a custom RadGrid wit hierarchical data and I want to change the default ugly expander cell from the large unformatted plus and minus. I have tried to change it with the VSB but the only attribute I seem to be able to modify is the line color and the scaling. I know this can be modified because I have seen other grids with different expander cell styles. Can anyone shed some light on this seeing that Telerik has decided to keep it a secret?
using
(SqlDataReader dr = cmd.ExecuteReader())
{
while
(dr.Read())
richTextBox1.AppendText(
"\n"
+ dr[
"data"
] +
": "
+ dr[
"UserName"
] +
": "
+ dr[
"message"
].ToString());
}
var serie = new PieSeries()
{
ShowLabels = true,
RadiusFactor = 0.9f,
Range = new Telerik.Charting.AngleRange(270, 360)
};
foreach(var setup in setups){
serie.DataPoints.Add(new PieDataPoint(Convert.ToDouble(setup.SommeUseTime * 100 / timeclocks.First().SommeTempsStd), setup.nomsetup)
{
Name = "Test"
});
}
pieChart.Series.Clear();
pieChart.Series.Add(serie);
pieChart.ShowLegend = true;