Search found 26 matches
- Thu Sep 10, 2015 7:53 pm
- Forum: VCL
- Topic: problems with chart
- Replies: 1
- Views: 4368
problems with chart
Hi, I'm having problems with the following code. It gives me the error "...EListError with message 'List index out of bounds (-1)' I'm using TeeChart Pro 2013.09.131110 32 Bit VCL 1) it seems that disabling chart1.leftaxis.setminmax solves the problems but if I really need to setminmax... 2) If you ...
- Fri Apr 17, 2015 9:20 am
- Forum: .NET
- Topic: borders at tchart
- Replies: 5
- Views: 10623
Re: borders at tchart
Super - this works fantastic
- Fri Apr 17, 2015 8:33 am
- Forum: .NET
- Topic: borders at tchart
- Replies: 5
- Views: 10623
Re: borders at tchart
... and by the way - thank you for a VERY fast reply
- Fri Apr 17, 2015 8:30 am
- Forum: .NET
- Topic: borders at tchart
- Replies: 5
- Views: 10623
Re: borders at tchart
Hi, I have attached an image generated in the following code. I have taken the image generated below and then inserted the graph on a white blank page in windows Paint. as you will see, a thin black line is still present?? public Form1() { InitializeComponent(); tChart1.Series.Clear(); tChart1.Serie...
- Fri Apr 17, 2015 7:51 am
- Forum: .NET
- Topic: borders at tchart
- Replies: 5
- Views: 10623
borders at tchart
Hi, In the attached file you will see a part of a tchart with a distinct black border surrounding the image. I have tried to remove this border using the code: Chart.Panel.Bevel.Outer = Steema.TeeChart.Drawing.BevelStyles.None; However, it does not help - the black border is still there. What else c...
- Tue Apr 14, 2015 12:26 pm
- Forum: .NET
- Topic: Convert Steema.TeeChart.Export.BitmapFormat to System.Drawi
- Replies: 1
- Views: 4486
Convert Steema.TeeChart.Export.BitmapFormat to System.Drawi
Hi, I'm using the code below to get a bitmap; however, for som other image processing I need to have the bitmap as a "System.Drawing.Image" Is there a way to convert Steema.TeeChart.Export.BitmapFormat to System.Drawing.Image ?? Steema.TeeChart.Export.BitmapFormat bitMap = tChart1.Export.Image.Bitma...
- Fri Nov 07, 2014 8:54 am
- Forum: .NET
- Topic: Problems with legend
- Replies: 1
- Views: 4320
Problems with legend
Hi, I'm using a GetLegendEvent to control the size and location of the Legend, see code below. The problems is that the title of the series inside the legend is put into 2 lines of text eventhough there is PLENTY of room to only have one line of text. I have attached an image that illustrates the pr...
- Fri Nov 07, 2014 7:02 am
- Forum: .NET
- Topic: Problems with multi Axes
- Replies: 9
- Views: 14266
Re: Problems with multi Axes
Thank you for helping me
It works really well now
It works really well now
- Thu Nov 06, 2014 3:10 pm
- Forum: .NET
- Topic: Problems with multi Axes
- Replies: 9
- Views: 14266
Re: Problems with multi Axes
Hi, I have tried to change it in accordance with your instructions, see code below 1) Start with all series active=true 2) then try to inactive series 3 and re-activate the series (uncheck checkbox3, then recheck checkbox 3) That makes the axes overlap...?? private void checkBox1_CheckedChanged(obje...
- Thu Nov 06, 2014 12:15 pm
- Forum: .NET
- Topic: Problems with multi Axes
- Replies: 9
- Views: 14266
Re: Problems with multi Axes
Hi Christopher, I'm sorry but it still doesn't work 1) Try to start with all 4 series active = all 4 chckboxes checked. 2) Then uncheck first checkbox4, then uncheck checkbox3, then uncheck checkbox2 and finally uncheck checkbox1 - (series4.Active = false; then series3.Active = false; then series2.a...
- Thu Nov 06, 2014 10:40 am
- Forum: .NET
- Topic: Problems with multi Axes
- Replies: 9
- Views: 14266
Re: Problems with multi Axes
Hi,
Thnx for helping me out
it works, however, I had to change the checkBoxes onclickevent to:
Thnx for helping me out
it works, however, I had to change the checkBoxes onclickevent to:
Code: Select all
tChart1[3].Visible = checkBox4.Checked;
tChart1.Axes.Custom[3].Visible = tChart1[3].Visible;
tChart1.Draw(); //<- here
PlaceAxes(0, 0, 0, 0, 0);
- Thu Nov 06, 2014 7:13 am
- Forum: .NET
- Topic: Problems with multi Axes
- Replies: 9
- Views: 14266
Re: Problems with multi Axes
Hi,
I have added two images illustrating the problems with the axes.
Kind regards - HH Friis
I have added two images illustrating the problems with the axes.
Kind regards - HH Friis
- Wed Nov 05, 2014 8:52 pm
- Forum: .NET
- Topic: Problems with multi Axes
- Replies: 9
- Views: 14266
Problems with multi Axes
Hi, 1) I add 4 series and connect these 4 series to 4 custom axes - 1 series to one custom axes 2) I use a PlaceAxes in order to put the axes in the correct positioning 3) When I first "Activate = false" and then "active =true" using 4 checkBoxes - the axes positioning is completely wrong - eventhou...
- Mon Oct 27, 2014 9:47 am
- Forum: .NET
- Topic: Legend with Continous = true and formatting of legind text
- Replies: 12
- Views: 18053
Re: Legend with Continous = true and formatting of legind text
Just implemented both of the solutions you have presented here - it works fantastic both of them - thank you
- Mon Oct 27, 2014 9:35 am
- Forum: .NET
- Topic: positioning of CustomAxes in TChart
- Replies: 5
- Views: 9741
Re: positioning of CustomAxes in TChart
Thanks - that solved the problem