Search found 139 matches

by Dave
Tue May 06, 2014 8:45 am
Forum: .NET
Topic: A simple Zoom on the X-Axis??
Replies: 4
Views: 9289

Re: A simple Zoom on the X-Axis??

Sensational!

Thanks Christopher.
by Dave
Mon May 05, 2014 2:48 pm
Forum: .NET
Topic: A simple Zoom on the X-Axis??
Replies: 4
Views: 9289

Re: A simple Zoom on the X-Axis??

Hi Christopher Thanks but thats not really helping. I dont think Ive explained it very well Please see the chart I've attached. What I want is to really select a rectangle from X coords -15 to +15 and height 65,000 and then display. Only not drawing a rectangle but using code to replicate this. Ive ...
by Dave
Sun May 04, 2014 9:21 am
Forum: .NET
Topic: A simple Zoom on the X-Axis??
Replies: 4
Views: 9289

A simple Zoom on the X-Axis??

Hi We are using TeeChart version 3.5.3187.15585 Ive spent some time searching the forums for an example of how to do a simple zoom IN on the horizontal axis only. The vertical axis should not be zoomed. Is it possible to do this. Simple example. If the chart has 100 points starting from x=1 to x=100...
by Dave
Sun May 04, 2014 9:14 am
Forum: .NET
Topic: Why do I only have 2 labels on left axis?
Replies: 7
Views: 12353

Re: Why do I only have 2 labels on left axis?

Hi Christopher

We are using TeeChart version 3.5.3187.15585 and C#.NET

Bizarrely we found if the exponent was too small it didn't draw the labels. We have it working fine now by changing the units which allowed us to reduce the exponent.
by Dave
Tue Apr 08, 2014 3:15 pm
Forum: .NET
Topic: From software can I select Export tab in chart editor?
Replies: 2
Views: 5622

Re: From software can I select Export tab in chart editor?

Thanks Christopher that works.
by Dave
Tue Apr 08, 2014 1:49 pm
Forum: .NET
Topic: Why do I only have 2 labels on left axis?
Replies: 7
Views: 12353

Re: Why do I only have 2 labels on left axis?

Hi Christopher Apparently it works fine when the exponent is -10 or less. However for -10,-11, 12 etc the labels aren't displayed. We've got round this by labelling the axis uJ instead of J. So weve effectively multiplied the values by 1 million and everything is ok. This issue may have been fixed i...
by Dave
Fri Apr 04, 2014 9:15 pm
Forum: .NET
Topic: Why do I only have 2 labels on left axis?
Replies: 7
Views: 12353

Re: Why do I only have 2 labels on left axis?

I wrote a test program and the following worked.

spectrumChart.Axes.Left.Labels.Exponent = true;
spectrumChart.Axes.Left.Labels.ValueFormat = "#.0 \"x10\" E+0";


Will test on our own project later.
by Dave
Fri Apr 04, 2014 7:21 pm
Forum: .NET
Topic: Why do I only have 2 labels on left axis?
Replies: 7
Views: 12353

Re: Why do I only have 2 labels on left axis?

Anyone with any ideas?

It seems like when you do;

myChart.Axes.Left.Labels.Exponent = true


The labels don't display. However if

myChart.Axes.Left.Labels.Exponent = false


then the labels do show but they are all zero because the values are so tiny.
by Dave
Thu Apr 03, 2014 10:57 am
Forum: .NET
Topic: From software can I select Export tab in chart editor?
Replies: 2
Views: 5622

From software can I select Export tab in chart editor?

Hi Currently we display the teechart editor when the user clicks on a chart. We use this code; Steema.TeeChart.Editor editor1 = new Steema.TeeChart.Editor(myChart); editor1.ShowModal(); This displays the Teechart editor with the "Chart" tab set to display by default. Is there a way to have the "Expo...
by Dave
Thu Apr 03, 2014 10:08 am
Forum: .NET
Topic: Why do I only have 2 labels on left axis?
Replies: 7
Views: 12353

Why do I only have 2 labels on left axis?

Hi Ive set the following to define the left axis; myChart.Axes.Left.Labels.Exponent = true; myChart.Axes.Left.Labels.ValueFormat = "00e-0"; However when I plot a curve on the line only 2 labels are shown; 0 and 1.3(e-13) despite the fact my plot extend from e-15 to e-18 Do I need to set some value t...
by Dave
Tue Dec 03, 2013 4:03 pm
Forum: .NET
Topic: My Labels OverLap
Replies: 2
Views: 5400

Re: My Labels OverLap

Thanks Sandra. Actually Ive just noticed that in the TeeChart editor there is a checkbox which helps. Click Chart tab, then the Axes tab then select "Bottom Axes", then the Scales tab and check/uncheck the "Inverted" check box. This reverses the chart and draws the correct labels in the Bottom axis....
by Dave
Mon Dec 02, 2013 11:01 pm
Forum: .NET
Topic: How do I set Labels Increment
Replies: 1
Views: 4399

How do I set Labels Increment

Hi there This is a very similar question to my previous one. I am adding labels programmatically using C#.Net (see below) However when I zoom-in I don't see any labels How do I make my custom labels behave in a similar way to the default labels? ie. when you zoom-in you see labels at the new scale T...
by Dave
Mon Dec 02, 2013 10:15 pm
Forum: .NET
Topic: My Labels OverLap
Replies: 2
Views: 5400

My Labels OverLap

Hi there I am adding a line to a Chart. Usually this is straightforward however, in this case I need to have the line plotted with the highest X-value at the left most position on the X-Axis and the lowest X-value at the furthest point on the X-axis. ie. I need to reverse the labels. As far as Im aw...
by Dave
Fri Nov 01, 2013 2:24 pm
Forum: .NET
Topic: Why does the chart legend update every point?
Replies: 3
Views: 6598

Re: Why does the chart legend update every point?

Hi

Ive fixed this. Not sure how. My code is pretty complicated but it works now.
by Dave
Fri Nov 01, 2013 2:04 pm
Forum: .NET
Topic: Why does the chart legend update every point?
Replies: 3
Views: 6598

Re: Why does the chart legend update every point?

Note Ive set the legend as this;

ourChart.Legend.LegendStyle = Steema.TeeChart.LegendStyles.Series;


So I would expect to get one entry for each series (line) added to the chart.
Not one entry for each point added to the chart as we get currently.