Search found 167 matches: multiple axes
Searched query: multiple axes
- Thu Apr 28, 2016 8:10 am
- Forum: .NET
- Topic: Show arrow on multiple custom axis.
- Replies: 1
- Views: 5043
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(); ...
- Mon Oct 12, 2015 1:14 pm
- Forum: .NET
- Topic: Show multiple Custom Left and Right axis on Tchart
- Replies: 3
- Views: 8245
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))); ...
- Tue Sep 29, 2015 8:18 am
- Forum: .NET
- Topic: To show multiple Left axis.
- Replies: 1
- Views: 4535
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 ...
- Tue Mar 24, 2015 5:42 am
- Forum: .NET
- Topic: Aligning Right Axes of Multiple Charts
- Replies: 2
- Views: 5023
Re: Aligning Right Axes of Multiple Charts
Thank you very much. It solves the problem.
- Mon Mar 23, 2015 11:49 am
- Forum: .NET
- Topic: Aligning Right Axes of Multiple Charts
- Replies: 2
- Views: 5023
- Mon Mar 23, 2015 11:43 am
- Forum: .NET
- Topic: Aligning Right Axes of Multiple Charts
- Replies: 2
- Views: 5023
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) ...
- Mon Mar 16, 2015 11:41 am
- Forum: .NET
- Topic: TeeChart ASP .Net: Adding Multiple Series to same Chart
- Replies: 1
- Views: 4280
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; }
- Thu Nov 06, 2014 12:15 pm
- Forum: .NET
- Topic: Problems with multi Axes
- Replies: 9
- Views: 11380
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; ...
- Wed Nov 05, 2014 8:52 pm
- Forum: .NET
- Topic: Problems with multi Axes
- Replies: 9
- Views: 11380
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 ...
- Wed Jun 25, 2014 9:43 am
- Forum: .NET
- Topic: Zoom specified axis from custom axis list by mouse wheel
- Replies: 1
- Views: 3877
Zoom specified axis from custom axis list by mouse wheel
Hi, i have multiple vertical custom axes, and i want to have ability to zoom one axis( plot ) via mouse wheel by setting mouse pointer to this axis ...
- Thu Mar 27, 2014 2:23 pm
- Forum: .NET
- Topic: axis labels and title overlaping for many vertical axes
- Replies: 13
- Views: 19565
axis labels and title overlaping for many vertical axes
Hi, i use multiple custom vertical axis, and place it on some distance from each other on the left ... to false, as someone rocended on this forum, but after that have to move all other axes to the proper place. Bellow you can see a part of a code. public double Min { get { ...
- Wed Jan 22, 2014 4:04 pm
- Forum: .NET
- Topic: Problem with error series(LR style) having multiple points
- Replies: 7
- Views: 11463
Re: Problem with error series(LR style) having multiple points
... is a Windows Form containing a simple example for testing the Error series. I have added the data you mentioned to it and have adjusted the bottom axes minimum and maximum, as you can see. Is this a satisfactory solution to your problem?
- Mon Nov 25, 2013 10:45 am
- Forum: .NET
- Topic: Autoscaling problem with multiple series
- Replies: 2
- Views: 3700
Re: Autoscaling problem with multiple series
... tChart1[i + 1].YValues.Maximum)) { Max = Math.Max(tChart1[i].YValues.Maximum, tChart1[i + 1].YValues.Maximum); } } tChart1.Axes.Left.SetMinMax(Min, Max); } I hope will helps. Thanks,
- Wed Oct 30, 2013 3:13 pm
- Forum: .NET
- Topic: General grid for multiple custom axes
- Replies: 2
- Views: 4060
Re: General grid for multiple custom axes
Hello Petr, Well, i've realized that that is bad idea, and changed my mind, now i'd like to drow horizontal grid lines myself directly on the chart, and setting grid.visible to false for each custom axis. so, how can i draw line set directly on the chart? where can i find method like DrawLine(point1...
- Wed Oct 30, 2013 1:34 pm
- Forum: .NET
- Topic: General grid for multiple custom axes
- Replies: 2
- Views: 4060
Re: General grid for multiple custom axes
Well, i've realized that that is bad idea, and changed my mind, now i'd like to drow horizontal grid lines myself directly on the chart, and setting grid.visible to false for each custom axis. so, how can i draw line set directly on the chart? where can i find method like DrawLine(point1, point2)? O...