Search found 173 matches: multiple axes

Searched query: multiple axes

by biqpaulson
Tue Apr 11, 2017 4:54 pm
Forum: .NET
Topic: Label Separation still a problem
Replies: 11
Views: 21448

Re: Label Separation still a problem

Nevermind the last question. I was able to figure it out. Chart.Axes.Bottom.IAxisSize works fine. I have another question. I have been trying ... set of stacks since: Chart.Axes.Bottom.Labels.Items.Add(value, text) has multiple positions in the SideAll charts. and all the .Labels.Items actions ...
by biqpaulson
Wed Feb 22, 2017 2:55 pm
Forum: .NET
Topic: Chart label minimum separation problems when angled.
Replies: 9
Views: 17458

Re: Chart label minimum separation problems when angled.

Thanks. tChart1.Axes.Bottom.Increment = 1; //<- additional line works in most cases but not in all of the cases. I have still seen a chart spin. Unfortunately the spin is normally when multiple of charts are being resized/refreshed and I don't know which chart it is that is ...
by Mr.Hu_NotProSupport
Tue Oct 04, 2016 12:01 pm
Forum: .NET
Topic: Axis And CursorTool And Label
Replies: 1
Views: 6127

Axis And CursorTool And Label

... = True Dim MyLine(0 to 20) As New Steema.TeeChart.Styles.Line() tChart.Axes.Custom.Add(Axis1) tChart.Axes.Custom.Add(Axis2) tChart.Axes.Custom.Add(Axis3) ... problem One: in the help file, only add a Series example, did not add multiple Series multiple Axis example, if you specify CursorTool1.Series ...
by Mr.Hu_NotProSupport
Tue Oct 04, 2016 12:01 pm
Forum: .NET
Topic: Axis And CursorTool And Label
Replies: 0
Views: 7990

Axis And CursorTool And Label

... = True Dim MyLine(0 to 20) As New Steema.TeeChart.Styles.Line() tChart.Axes.Custom.Add(Axis1) tChart.Axes.Custom.Add(Axis2) tChart.Axes.Custom.Add(Axis3) ... problem One: in the help file, only add a Series example, did not add multiple Series multiple Axis example, if you specify CursorTool1.Series ...
by Sandra
Fri Aug 12, 2016 2:07 pm
Forum: .NET
Topic: Axis labels within the bar rectangle?
Replies: 13
Views: 23469

Re: Axis labels within the bar rectangle?

... or MarksStyles.XY. You can also make marks having multiple lines adding line breaks into them, for example: private void InitializeChart() ... = Steema.TeeChart.Styles.MarksLocation.Start; tChart1.Axes.Left.Labels.Style = Steema.TeeChart.AxisLabelStyle.Value; tChart1.Axes.Left.Inverted ...
by Sanjay
Tue Aug 02, 2016 7:59 pm
Forum: .NET
Topic: Display issue with fast line series
Replies: 7
Views: 17547

Re: Display issue with fast line series

Thanks for the reply. If I comment out the line tChart1.Axes.Left.SetMinMax(400, 900); then the line looks smooth. But this option is ... to able to control the min and max of the custom axis as it is shared by multiple series. And the min and max is decided by all the points and not just ...
by Christopher
Thu Apr 28, 2016 8:10 am
Forum: .NET
Topic: Show arrow on multiple custom axis.
Replies: 1
Views: 5940

Re: Show arrow on multiple custom axis.

... = false; Line line1 = new Line(tChart1.Chart); Line line2 = new Line(tChart1.Chart); tChart1.Panel.MarginLeft = 10; Axis axis1 = tChart1.Axes.Custom.Add(); line1.CustomVertAxis = axis1; axis1.PositionUnits = PositionUnits.Pixels; axis1.RelativePosition = -50; line1.FillSampleValues(); ...
by amol
Mon Oct 12, 2015 1:14 pm
Forum: .NET
Topic: Show multiple Custom Left and Right axis on Tchart
Replies: 3
Views: 10077

Show multiple Custom Left and Right axis on Tchart

... have some issues related to Custom Axis of Tchart given as below, Show multiple Left and Right axis on Tchart . The code are using for Left Axis, this.axis1 = new Steema.TeeChart.Axis(this.tChart1.Chart); this.tChart1.Axes.Custom.Add(this.axis1); this.axis1.AxisPen.Color = System.Drawing.Color.FromArgb(((System.Byte)(0)),((System.Byte)(192)),((System.Byte)(0))); ...
by Christopher
Tue Sep 29, 2015 8:18 am
Forum: .NET
Topic: To show multiple Left axis.
Replies: 1
Views: 5264

Re: To show multiple Left axis.

Hello, we have some query related to Tchart given as below, You should be able to use custom axes - may I suggest you take a look at the examples in the demo under: %Program Files%\Steema Software\Steema TeeChart for .NET 2015 4.1.2015.08060\Examples\DemoProject\bin\ExecutableDemo\TeeChartNetExamples.exe ...
by Quant
Tue Mar 24, 2015 5:42 am
Forum: .NET
Topic: Aligning Right Axes of Multiple Charts
Replies: 2
Views: 5848

Re: Aligning Right Axes of Multiple Charts

Thank you very much. It solves the problem.
by Narcís
Mon Mar 23, 2015 11:49 am
Forum: .NET
Topic: Aligning Right Axes of Multiple Charts
Replies: 2
Views: 5848

Re: Aligning Right Axes of Multiple Charts

Hi Quant,

You could try doing something similar to what Yeray suggested here.
by Quant
Mon Mar 23, 2015 11:43 am
Forum: .NET
Topic: Aligning Right Axes of Multiple Charts
Replies: 2
Views: 5848

Aligning Right Axes of Multiple Charts

... Margin Issue.JPG As shown in the above image, we need to align Right Axes of Multiple Charts? We did extensive R&D on this. When the Value Labels (Right Axis Value Label) ...
by Quant
Mon Mar 16, 2015 11:41 am
Forum: .NET
Topic: TeeChart ASP .Net: Adding Multiple Series to same Chart
Replies: 1
Views: 4942

TeeChart ASP .Net: Adding Multiple Series to same Chart

We are working on Web Version of TeeChart (ASP .Net). We need to add multiple series to same chart dynamically on button click. But while adding ... count++; lineSeries1.Title = "Line " + count.ToString(); ch1.Axes.Bottom.Labels.Angle = 90; }
by Friis
Thu Nov 06, 2014 12:15 pm
Forum: .NET
Topic: Problems with multi Axes
Replies: 9
Views: 13506

Re: Problems with multi Axes

... then series2.active=false, ect...) The order in which you unchck is very important!! 3) Activate series 3 / check ckeckbox3 3) as you can see the axes positioning is still incorrect...?? using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; ...
by Friis
Wed Nov 05, 2014 8:52 pm
Forum: .NET
Topic: Problems with multi Axes
Replies: 9
Views: 13506

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 ...