This is a migrated thread and some comments may be shown as answers.

Column size shrink with refresh

1 Answer 57 Views
Chart (Obsolete)
This is a migrated thread and some comments may be shown as answers.
Naografix
Top achievements
Rank 1
Naografix asked on 22 Jan 2015, 09:06 AM
Hello,

I have a small problem every time I refreshed my page.

Indeed, the size of my columns shrink gradually, so that I can even do not see ...
Here are some screenshot:

First screen : http://puu.sh/eRxuj/ee67764f9a.png
After 5 refresh : http://puu.sh/eRxzR/6270233218.png


ColumnSeries columnEffluent = new ColumnSeries();
columnEffluent.Gap = 1.5;
columnEffluent.Name = "Effluents traités";
columnEffluent.LabelsAppearance.Color = System.Drawing.Color.Blue;
columnEffluent.Appearance.FillStyle.BackgroundColor = System.Drawing.Color.FromArgb(3, 133, 182);
columnEffluent.TooltipsAppearance.DataFormatString = "{0} m³/j";
 
LineSeries linePluvio = new LineSeries();
linePluvio.Name = "Pluviométrie";
linePluvio.AxisName = "AdditionalAxis";
linePluvio.MarkersAppearance.BorderColor = System.Drawing.Color.Red;
linePluvio.MarkersAppearance.BackgroundColor = System.Drawing.Color.Red;
linePluvio.Appearance.FillStyle.BackgroundColor = System.Drawing.Color.Red;
linePluvio.LabelsAppearance.Color = System.Drawing.Color.Red;
linePluvio.LineAppearance.LineStyle = Telerik.Web.UI.HtmlChart.Enums.ExtendedLineStyle.Smooth;
linePluvio.TooltipsAppearance.DataFormatString = "{0} mm";


Hope you can help me

1 Answer, 1 is accepted

Sort by
0
Naografix
Top achievements
Rank 1
answered on 22 Jan 2015, 01:45 PM
Solved : Need to clear my chart : Chart.PlotArea.Series.Clear();
Tags
Chart (Obsolete)
Asked by
Naografix
Top achievements
Rank 1
Answers by
Naografix
Top achievements
Rank 1
Share this question
or