Search found 15 matches

by antoine
Tue Aug 23, 2011 9:42 am
Forum: .NET
Topic: WPF NumericGauge issue
Replies: 1
Views: 2666

WPF NumericGauge issue

Hi Steema,

I have an issue with the NumericGauge in WPF. I'm using the latest version of teechart (4.1.2011.7283).
When The type of the series is modified, the content from the NumericGauge is not hidden:
numericgauge issue.PNG
NumericGauge issue
numericgauge issue.PNG (33.73 KiB) Viewed 2790 times
I made a small project to reproduce this issue.

Thank you.
Antoine.
by antoine
Thu Aug 04, 2011 2:22 pm
Forum: .NET
Topic: Axes Label issue
Replies: 6
Views: 5796

Re: Axes Label issue

I have been able to reproduce it.

I enclosed the small I made to test it.
by antoine
Thu Aug 04, 2011 1:31 pm
Forum: .NET
Topic: ClickAxis in WPF
Replies: 4
Views: 4592

Re: ClickAxis in WPF

Ok. To by-pass this limitation I have tried to used the ClickSeries of the TChart component and the Click of the CircularGauge without any success. public void InitTeeChart() { CircularGauge gauge = new CircularGauge(); gauge.Click +=new MouseEventHandler(gauge_Click); tc_Chart.ClickSeries+=new TCha...
by antoine
Thu Aug 04, 2011 1:22 pm
Forum: .NET
Topic: Axes Label issue
Replies: 6
Views: 5796

Re: Axes Label issue

I am using the WPF version of TChart.
by antoine
Thu Aug 04, 2011 9:20 am
Forum: .NET
Topic: Axes Label issue
Replies: 6
Views: 5796

Axes Label issue

Hi, Just to let you know that I found an issue with the Label axes: AxesLabel.PNG the axes is configure like this: in_TChart.Axes.Left.Minimum = 49; in_TChart.Axes.Left.Maximum = 50; in_TChart.Axes.Left.Increment = 0,1; in_TChart.Axes.Left.Labels.Exponent = true; in_TChart.Axes.Left.Labels.ValueForm...
by antoine
Wed Aug 03, 2011 1:18 pm
Forum: .NET
Topic: ClickAxis in WPF
Replies: 4
Views: 4592

Re: ClickAxis in WPF

I've managed to do it with the Line using this: this.tc_Chart.ClickAxis +=new MouseEventHandler(tc_Chart_ClickAxis); //... private void tc_Chart_ClickAxis(object sender, MouseEventArgs e) { Console.WriteLine(e.ToString()); } but it does not work with the CircularGauge.
by antoine
Wed Aug 03, 2011 12:33 pm
Forum: .NET
Topic: ClickAxis in WPF
Replies: 4
Views: 4592

ClickAxis in WPF

Hi,

Is it possible to use the ClickAxis event on a chart (Line and CircularGauge) in WPF?
If yes, can you provide me an exemple?

Thanks,
Antoine.
by antoine
Tue Aug 02, 2011 9:50 am
Forum: .NET
Topic: Gauge Logarithmic Axis WPF
Replies: 12
Views: 10645

Re: Gauge Logarithmic Axis WPF

Thanks, it works!
by antoine
Tue Aug 02, 2011 6:41 am
Forum: .NET
Topic: Gauge Logarithmic Axis WPF
Replies: 12
Views: 10645

Re: Gauge Logarithmic Axis WPF

Hi Sandra, I am have some difficulties to deal with the Axis of my gauge. Has you can see on the picture, the labels on the Axis are all "0". At the bottom left you have the current value of the gauge. gauge.PNG I am using the following code to display the axis: CircularGauge gauge = new CircularGau...
by antoine
Tue Jun 28, 2011 8:15 am
Forum: .NET
Topic: Gauge Logarithmic Axis WPF
Replies: 12
Views: 10645

Re: Gauge Logarithmic Axis WPF

Hi Sandra, I enclosed a test project with a simple CircularGauge with the NumericGauge wich does not update. It seems that the NumericGauge does not work at all (even without the CircularGauge) in WPF. The code you provide me to change the color of the RedLine and GreenLine works great. Regards, Ant...
by antoine
Thu Jun 23, 2011 2:45 pm
Forum: .NET
Topic: Gauge Logarithmic Axis WPF
Replies: 12
Views: 10645

Re: Gauge Logarithmic Axis WPF

Oh, and has you can see, the axis is not Logarithmic. In the timer_tick, i'm using this to update the value: Random rand = new Random(); if (tc_Chart.Series[0].GetType() == typeof(CircularGauge)) { ((CircularGauge)tc_Chart.Series[0]).Value = rand.Next(1000); tc_Chart.Invalidate(); }
by antoine
Thu Jun 23, 2011 2:40 pm
Forum: .NET
Topic: Gauge Logarithmic Axis WPF
Replies: 12
Views: 10645

Re: Gauge Logarithmic Axis WPF

Hi Sandra, I am using the 4.1.2011.4193 version of teechart. I'm using the WPF component. I have tried to display the NumericGauge in the CircularGauge but nothing is displayed in it as you can see on the image below: http://img847.imageshack.us/img847/1651/sansreme.png I have set the AutoValueNumer...
by antoine
Thu Jun 23, 2011 9:47 am
Forum: .NET
Topic: Gauge Logarithmic Axis WPF
Replies: 12
Views: 10645

Re: Gauge Logarithmic Axis WPF

Thanks, that's what I wanted. Now I have the following code: CircularGauge gauge = new CircularGauge(); //Gauges gauge = new Gauges(); gauge.TotalAngle = 220; gauge.RotationAngle = 0; gauge.DisplayRotationAngle = 0; //display the numeric value gauge.NumericGauge.Visible = true; gauge.FaceBrush.Color...
by antoine
Tue Jun 21, 2011 2:38 pm
Forum: .NET
Topic: Gauge Logarithmic Axis WPF
Replies: 12
Views: 10645

Re: Gauge Logarithmic Axis WPF

I have tried to use the logarithmic axis with a Winform Gauge but it gave me the same result.
by antoine
Tue Jun 21, 2011 9:42 am
Forum: .NET
Topic: Gauge Logarithmic Axis WPF
Replies: 12
Views: 10645

Gauge Logarithmic Axis WPF

Hi, I would like to use a logarithmic axis on a gauge but I don't know how to do it. I have the following code: Gauges gauge = new Gauges(); gauge.TotalAngle = 270; gauge.RotationAngle = 225; Steema.TeeChart.WPF.Axis logAxis = tc_Chart.Axes.Right; logAxis.Logarithmic = true; logAxis.LogarithmicBase ...