Search found 84 matches
- Tue Dec 06, 2016 3:09 am
- Forum: .NET
- Topic: Setting position of custom vertical axis
- Replies: 1
- Views: 6887
Setting position of custom vertical axis
Hi, I'm using TChart Version 3.4.3371.26406 Visual Studio 2010 Programming with C# I have added 3 custom vertical axis's to the left side of the TChart, and 3 custom vertical axis's to the right side of the TChart. The issue is that they are place one on top of the other. Using tChart1.Axes.Custom[x...
- Mon Nov 30, 2015 4:51 pm
- Forum: .NET
- Topic: X Data in Editor not matching Bottom Axis
- Replies: 4
- Views: 10553
Re: X Data in Editor not matching Bottom Axis
Christopher,
Thanks for looking at this.
In testing the Time issue, I added the same lines of code you had added, and I get the same result.
I read the MS link you posted, and I now understand the why- but not how to correct it.
Can provide some guidance?
Thanks!
Thanks for looking at this.
In testing the Time issue, I added the same lines of code you had added, and I get the same result.
I read the MS link you posted, and I now understand the why- but not how to correct it.
Can provide some guidance?
Thanks!
- Sun Nov 29, 2015 8:15 pm
- Forum: .NET
- Topic: X Data in Editor not matching Bottom Axis
- Replies: 4
- Views: 10553
X Data in Editor not matching Bottom Axis
HI, This test program is written in VB.Net - VS2010, TChart - 3.5.3371.26406 When the test program is first launched, the bottom axis is in "Numeric" mode. When the "Time" button is pressed, the bottom axis will display the current date and time, 5 minute increments, for a total of 1 hour. However, ...
- Tue Nov 24, 2015 10:43 pm
- Forum: .NET
- Topic: Bottom Axis Label Start Position
- Replies: 1
- Views: 6720
Bottom Axis Label Start Position
Hi, In the 2 images I have posted here, I need to figure out how to make the 1st label and 1st vertical line appear at the leftmost position of the graph regardless of the value. I have also uploaded the project as well. This 1st picture shows the discrepancy. Pic1.png This picture is similar what i...
- Tue Nov 24, 2015 9:49 pm
- Forum: .NET
- Topic: Bottom Axis Time Base Configuration Problems
- Replies: 4
- Views: 10852
Re: Bottom Axis Time Base Configuration Problems
I came up with an alternative method to achieve my goal. It has one small issue however, but I will post as a new Issue. Meantime, here's my fix! Using buttons to select the mode: Private Sub Button1_Click(sender As System.Object, e As System.EventArgs) Handles Button1.Click 'Numeric Mode Dim aa As ...
- Sat Nov 21, 2015 7:01 pm
- Forum: .NET
- Topic: Bottom Axis Time Base Configuration Problems
- Replies: 4
- Views: 10852
Re: Bottom Axis Time Base Configuration Problems
Christopher, Thanks for looking at this. I tried to implement your suggestion with little success. Please see the attached screenshot: Screen2A.png This is what the bottom axis should look like after selecting "Time Mode". Referring to my original Screen1.png screenshot, it is in "Numeric Mode". The...
- Fri Nov 13, 2015 9:48 pm
- Forum: .NET
- Topic: Bottom Axis Time Base Configuration Problems
- Replies: 4
- Views: 10852
Bottom Axis Time Base Configuration Problems
Hello, I can't figure out how to make this work. I just want to allow the user to swap the Bottom Axis values based on ListBox7 selection (Numeric or Time) If the user selects the first item (Numeric), the code works as I expect. If the user selects the second item (Time) this is where the problem a...
- Fri Nov 13, 2015 6:55 pm
- Forum: .NET
- Topic: Custom Axis Visibility Issue
- Replies: 2
- Views: 7465
Re: Custom Axis Visibility Issue
Thank you Christopher,
That's exactly what I needed!
That's exactly what I needed!
- Thu Nov 12, 2015 3:34 pm
- Forum: .NET
- Topic: Custom Axis Visibility Issue
- Replies: 2
- Views: 7465
Custom Axis Visibility Issue
Hi, I'm using: TeeChart.Net Version 3.5.3371.26406 VS2010 - VB.Net Window 7-32bit When I un-check a series (FastLine), the associated custom axis labels are automatically set to invisible. I also need the Title and axis line to become invisible as well. Image SS1.png shows the result of un-checking ...
- Fri Oct 23, 2015 3:13 pm
- Forum: .NET
- Topic: LinePen.Width
- Replies: 2
- Views: 10199
Re: LinePen.Width
Thank You!
- Fri Oct 23, 2015 12:59 am
- Forum: .NET
- Topic: LinePen.Width
- Replies: 2
- Views: 10199
LinePen.Width
Hello,
In C#, this statement works fine.
(tChart1.Series[aa] as Steema.TeeChart.Styles.FastLine).LinePen.Width = int.Parse(textBox6.Text);
What is the equivalent statement for VB.Net?
Thanks
In C#, this statement works fine.
(tChart1.Series[aa] as Steema.TeeChart.Styles.FastLine).LinePen.Width = int.Parse(textBox6.Text);
What is the equivalent statement for VB.Net?
Thanks
- Tue Apr 21, 2015 10:00 pm
- Forum: ActiveX
- Topic: Request for tool property
- Replies: 1
- Views: 8767
Request for tool property
Hello, I'd like to add a request for a rectangle tool property. Understanding that as rectangles are deleted, the index or rectangle number changes for all rectangles after the one that is deleted. This is probably fine for most applications, but is causing me an extreme amount of grief. So my solut...
- Thu Mar 19, 2015 7:04 pm
- Forum: ActiveX
- Topic: Switching Bottom Axis Between Real Time and Accumulate Time
- Replies: 6
- Views: 17943
Re: Switching Bottom Axis Between Real Time and Accumulate Time
Thanks for your help Yeray! Sometimes even just the simplest statements can lead to a resolution. I was able to modify the code you provided and create a small project. My solution was to create a UDT and populate it with managed data, then load the TChart data table from the UDT. Now everything loo...
- Wed Mar 18, 2015 6:38 pm
- Forum: ActiveX
- Topic: Switching Bottom Axis Between Real Time and Accumulate Time
- Replies: 6
- Views: 17943
Re: Switching Bottom Axis Between Real Time and Accumulate Time
Yeray, Thanks for looking at this. I tried the .Labels.Style setting, but this is not what I'm trying to accomplish. I have included screen shots in an effort to describe the issue. The screen shots are from a test program I put together to work on this issue. If necessary, I can upload the project ...
- Tue Mar 17, 2015 10:28 pm
- Forum: ActiveX
- Topic: Switching Bottom Axis Between Real Time and Accumulate Time
- Replies: 6
- Views: 17943
Switching Bottom Axis Between Real Time and Accumulate Time
Hi, I'm using VB6-SP6, and TeeChart Pro v2013.0.1.4.131120 32 bit ActiveX, Windows 7 Professional/SP1. I have my code setup such that the user can switch between Accumulated time (in minutes) or Real Time. Following are the settings for both modes. Accumulate Mode: TChart1.axis.Bottom.Maximum = JobI...