Search found 139 matches

by Dave
Wed Mar 31, 2021 7:51 am
Forum: .NET
Topic: Trying to Add a Top Axis
Replies: 2
Views: 6076

Re: Trying to Add a Top Axis

thanks!
by Dave
Mon Mar 29, 2021 5:30 pm
Forum: .NET
Topic: Trying to Add a Top Axis
Replies: 2
Views: 6076

Trying to Add a Top Axis

Hi I create a simple line plot as shown below. Everything is great with the X and Y axis displayed and labelled correctly as expected. However Id also like to display a top axis comprising integer values that match the number of items in the bottom X-axis. So the top axis would be {1,2,3,4,5}. Is th...
by Dave
Mon Jan 07, 2019 8:09 am
Forum: .NET
Topic: How to obtain largest Left Axis (y-axis) label?
Replies: 2
Views: 9068

Re: How to obtain largest Left Axis (y-axis) label?

Thanks Chris!
by Dave
Fri Jan 04, 2019 5:11 pm
Forum: .NET
Topic: How to obtain largest Left Axis (y-axis) label?
Replies: 2
Views: 9068

How to obtain largest Left Axis (y-axis) label?

Dear Support My chart is being updated about 10 times per second. The values displayed in the left axis are integers and can sometimes vary quite a lot. Is there an easy way to obtain the largest DISPLAYED label in the left axis. Note its not the largest left-axis value Im interested in because that...
by Dave
Tue Nov 27, 2018 7:41 pm
Forum: .NET
Topic: BackgroundImage not saving on Export
Replies: 2
Views: 8869

Re: BackgroundImage not saving on Export

Sensational! Thanks Chris
by Dave
Mon Nov 26, 2018 3:21 pm
Forum: .NET
Topic: BackgroundImage not saving on Export
Replies: 2
Views: 8869

BackgroundImage not saving on Export

Hello everyone It appears if you set the BackgroundImage from code then this background image is not saved when you do "Export.Template.Save(fileName)" Or at least when I do "Import.Template.Load(fileName)" the BackgroundImage property is set to null. It works OK if I set the BackgroundImage from th...
by Dave
Tue Jul 28, 2015 3:33 pm
Forum: .NET
Topic: Creating a Contour Map. Very Slow
Replies: 1
Views: 6679

Creating a Contour Map. Very Slow

Hi Im creating a contour plot from 30 2D lines each of which have 1025 points. The code Im using looks something like as shown below. It works and creates the contour OK. The problem is it takes over a minute to do it. Is there a quicker method? Note Im using a fairly old version of Teechart (versio...
by Dave
Tue Jul 28, 2015 1:43 pm
Forum: .NET
Topic: Bar Chart. Changing the Legend Display
Replies: 3
Views: 9125

Re: Bar Chart. Changing the Legend Display

Christopher Thanks that has helped a lot. Ive attached a image of what my chart looks like now. As you can see the Y-axis looks better but its not quite right. Ideally I'd like to replace the initial "1" with "10" because that's what is being represented. ie. its actually "1*10+6" NOT "1+6". So if I...
by Dave
Tue Jul 14, 2015 4:09 pm
Forum: .NET
Topic: Bar Chart. Changing the Legend Display
Replies: 3
Views: 9125

Bar Chart. Changing the Legend Display

Hi, Please see the attached bar chart screenshot. Its a basic bar chart. Ive attached the code below that I used to create it. Id like to change the display in the following ways; 1) The legend simply display "bar1". Instead Id like to have a legend that displays the value of each bar. eg. SYNC = 23...
by Dave
Tue Jul 14, 2015 3:56 pm
Forum: .NET
Topic: Setting Labels for a Logarithmic Scale
Replies: 2
Views: 7218

Re: Setting Labels for a Logarithmic Scale

Thanks Chris. That helped a lot.
by Dave
Thu Jul 02, 2015 9:47 pm
Forum: .NET
Topic: Setting Labels for a Logarithmic Scale
Replies: 2
Views: 7218

Setting Labels for a Logarithmic Scale

Hi I can change Y axis to a logarthmic scale by doing; tChart1.Axes.Left.Logarithmic = true; However the axis only shows 1 label. See the 2 attached screenshots for a linear scale chart and the corresponding logarithmic scale chart. I searched the forum and I found you can do; tChart.Axes.Left.Incre...
by Dave
Fri Sep 26, 2014 5:29 pm
Forum: .NET
Topic: How detect when series checkbox is selected in the legend?
Replies: 2
Views: 7694

Re: How detect when series checkbox is selected in the legend?

Sensational! That works. Thanks Christopher
by Dave
Thu Sep 25, 2014 1:51 pm
Forum: .NET
Topic: How detect when series checkbox is selected in the legend?
Replies: 2
Views: 7694

How detect when series checkbox is selected in the legend?

Hi To display the checkboxes beside each series in the legend i do this; theChart.Legend.CheckBoxes = true; If the user selects a checkbox how do I detect this?? Note. I need to be able to detect whether the checkbox is selected or deselected Note. I copied this questionto the activeX thread by mist...
by Dave
Thu Sep 25, 2014 1:48 pm
Forum: ActiveX
Topic: How detect when series checkbox is selected in the legend?
Replies: 3
Views: 12153

Re: How detect when series checkbox is selected in the legend?

Thanks Yeray. But unless Im mistake this code does not show whether a box is selected or deselected?

BTW. I meant to post this question on the .NET thread. So I will post there and link to your reply.
by Dave
Fri Sep 19, 2014 1:04 pm
Forum: ActiveX
Topic: How detect when series checkbox is selected in the legend?
Replies: 3
Views: 12153

How detect when series checkbox is selected in the legend?

Hi

To display the checkboxes beside each series in the legend i do this;

theChart.Legend.CheckBoxes = true;


If the user selects a checkbox how do I detect this??

Thanks!