Search found 5 matches

by AuerAhellwig
Mon Apr 04, 2016 9:38 am
Forum: .NET
Topic: Controlling Header/Axis visibility
Replies: 5
Views: 9045

Re: Controlling Header/Axis visibility

Dear Christopher,

thanks, I think I got it working now.

By the way, when setting CurrentTheme=ThemeType.Flat in this simple example application, I get a NullReferenceException inside TeeChart.WPF.dll, is this supposed to happen?
by AuerAhellwig
Thu Mar 31, 2016 4:09 pm
Forum: .NET
Topic: Controlling Header/Axis visibility
Replies: 5
Views: 9045

Re: Controlling Header/Axis visibility

Using the following code with TeeChart.WPF.dll v.4.1.2015.12160 ........... do you get the same results? Dear Christopher, sorry for my delayed reply. Using your example, I get the same results. I can also make the bottom and top axes appear by setting .Visible and .AxisPen.Visible to true for thos...
by AuerAhellwig
Thu Mar 17, 2016 3:53 pm
Forum: .NET
Topic: Controlling Header/Axis visibility
Replies: 5
Views: 9045

Controlling Header/Axis visibility

Dear Steema team, How to control the visibility e.g. of Header and axes? E.g. I'm trying this: TChart.CurrentTheme = ThemeType.Flat; TChart.Header.Visible = false; TChart.Axes.Left.Visible = true; TChart.Axes.Left.AxisPen.Visible = true; TChart.Axes.Right.Visible = true; TChart.Axes.Right.AxisPen.Vi...
by AuerAhellwig
Tue May 12, 2015 2:28 pm
Forum: .NET
Topic: Incorrect bottom axis range for Error series
Replies: 2
Views: 5114

Re: Incorrect bottom axis range for Error series

Hello,
just setting CustomBarWidth indeed seems to do the trick, thanks.
by AuerAhellwig
Fri May 08, 2015 9:44 am
Forum: .NET
Topic: Incorrect bottom axis range for Error series
Replies: 2
Views: 5114

Incorrect bottom axis range for Error series

I'm trying to add an Error series to a chart. Here's a simple example: tChart1.Axes.Bottom.Automatic = false; tChart1.Axes.Bottom.Minimum = 0.0; tChart1.Axes.Bottom.Maximum = 10.0; var error1 = new Steema.TeeChart.Styles.Error(tChart1.Chart); error1.SideMargins = false; error1.ErrorStyle = Steema.Te...