Search found 50 matches
- Mon Mar 31, 2025 11:02 am
- Forum: .NET
- Topic: Issue with Custom Y-Axis Labels After Using Default Zoom
- Replies: 1
- Views: 536
Re: Issue with Custom Y-Axis Labels After Using Default Zoom
Hello TomAgos, Could you check whether your axis.Increment is set at 0 (automatic)? If so, try assigning a value that better fits your scenario. If adjusting the Increment value doesn't resolve the issue, please share the code that triggers when zooming. I haven’t been able to replicate the problem ...
Re: Points
Hello TomAgos, There are a few ways to achieve this. If you're using a WinForms App, you can use the design-time editor to help you explore all the possibilities with ease. However, here’s how you can do it through code. Given a Point series like this Points points = new Points(); You can set a red ...
- Tue Mar 11, 2025 1:06 pm
- Forum: .NET
- Topic: ColorLine and FastLine
- Replies: 1
- Views: 2972
Re: ColorLine and FastLine
Hello TomAgos, We have a demo of ours that you can check on our github that explains this in more detail, Line_Interpolate to be precise. Basically, through a function that looks like this private double InterpolateLineSeries(Series series, int firstindex, int lastindex, double xvalue) { int index; ...
- Fri Mar 07, 2025 11:57 am
- Forum: .NET
- Topic: Custom y axis labels
- Replies: 6
- Views: 18435
Re: Custom y axis labels
Hello, I’d be happy to clarify! There is a difference between _YAxis.Labels and _YAxis.Labels.Items When modifying _YAxis.Labels.Font.Color = Color.Red; , you'll notice in your demo that before triggering the mousewheel event, the labels will have a red color. After triggering the event, however, th...
- Mon Mar 03, 2025 1:51 pm
- Forum: .NET
- Topic: custom y axes title
- Replies: 3
- Views: 5067
Re: custom y axes title
Hello, A negative relative position and pixel-based positioning shouldn't cause issues when determining the axis position and using g.TextOut(x, y, text). If you're experiencing difficulties, could you share a sample of your code, including the chart's width, axis position, etc.? That way, I can rep...
- Mon Mar 03, 2025 10:37 am
- Forum: .NET
- Topic: custom y axes title
- Replies: 3
- Views: 5067
Re: custom y axes title
Hello, A way to achieve this is through the AfterDraw event ( _TChart.AfterDraw += _TChart_AfterDraw; ) I set up an example for you: private void _TChart_AfterDraw(object sender, IGraphics3D g) { // Keep in mind what PositionUnits we're using. I'm choosing Percent, adjust accordingly. _YAxis.Positio...
- Fri Feb 28, 2025 12:14 pm
- Forum: .NET
- Topic: Custom y axis labels
- Replies: 6
- Views: 18435
Re: Custom y axis labels
Hello, Thank you for providing the code sample. I was able to reproduce the issue successfully. The problem occurs when the max value set using axis.SetMinMax(newMin, newMax); is slightly lower than the actual maximum value that should be displayed. This can happen even when the difference is very s...
- Wed Jan 22, 2025 9:37 am
- Forum: .NET
- Topic: Disabling Default Mouse Zoom in TeeChart for WPF
- Replies: 2
- Views: 9476
Re: Disabling Default Mouse Zoom in TeeChart for WPF
Hello Tom, Now, I would like to disable the default zoom behavior (holding the left mouse button to zoom). Could you please advise on how to achieve this? To disable the default zoom behavior you can do it by setting the Zoom.Direction value to ZoomDirections.None For example: tChart1.Zoom.Direction...
- Mon Jan 20, 2025 10:33 am
- Forum: .NET
- Topic: Requesting DLL Download for TeeChart for .NET Pro Edition 2024 in a .NET 8.0 Environment
- Replies: 3
- Views: 12718
Re: Requesting DLL Download for TeeChart for .NET Pro Edition 2024 in a .NET 8.0 Environment
Hello mdstech, I'm experiencing an issue where the Styles method does not appear in TeeChart.WPF.dll. Could you possibly know what might be causing this? Could it be due to other dependencies? When working with WPF and TeeChart, "Styles" is under Steema.Teechart. WPF .Styles. Are you able to access ...
- Thu Jan 16, 2025 12:16 pm
- Forum: .NET
- Topic: Requesting DLL Download for TeeChart for .NET Pro Edition 2024 in a .NET 8.0 Environment
- Replies: 3
- Views: 12718
Re: Requesting DLL Download for TeeChart for .NET Pro Edition 2024 in a .NET 8.0 Environment
Hello mdstech, NuGet packages are essentially ZIP files, and you can extract their contents directly. Steps to Extract the DLLs: 1.- Download the NuGet Package: You can download the package from this link: https://www.nuget.org/packages/Steema.TeeChart.NET/4.2024.11.14 2.- Extract the Files: Rename ...
- Thu Dec 19, 2024 3:49 pm
- Forum: .NET
- Topic: TeeChart .NET For Blazor Nested Legend Series
- Replies: 1
- Views: 14336
Re: TeeChart .NET For Blazor Nested Legend Series
Hello, TChart Blazor doesn't offer a way to create groups of series in the legend. However, through custom code (js) you can decide which series are active at a time. This way you could have, for example, a function that activates some series and hides the other ones, completely up to you. Best rega...
- Mon Nov 25, 2024 9:55 am
- Forum: .NET
- Topic: Teechart .NET 4.2024.11.14 - Import/Export from/to .ten format doesn't work as expected
- Replies: 1
- Views: 12565
Re: Teechart .NET 4.2024.11.14 - Import/Export from/to .ten format doesn't work as expected
Hello: From a console application, please use the class TChart to access Export functionality. While the class 'Chart' does the job with UI Frameworks like Winforms, it is limited when it comes to console apps. Here's how the code would look like, following the code you provided, instead of "Chart c...
- Mon Nov 04, 2024 10:37 am
- Forum: .NET
- Topic: Annotations are broken. Can't draw on the canvas.
- Replies: 17
- Views: 138064
Re: Annotations are broken. Can't draw on the canvas.
Hello,
I have tried to reproduce your issue but creating and setting up Annotations seems to work as expected on my end.
Could you please share additional details or code context so we can assist you further?
Best regards,
Edu
I have tried to reproduce your issue but creating and setting up Annotations seems to work as expected on my end.
Could you please share additional details or code context so we can assist you further?
Best regards,
Edu
- Wed Oct 09, 2024 10:19 am
- Forum: .NET
- Topic: TeeChart .NET For Blazor Chart not displaying
- Replies: 15
- Views: 266362
Re: TeeChart .NET For Blazor Chart not displaying
Hello, I have been reviewing your project. I noticed you are using our demos as a baseline and then adding things on top to test things out. This practice is perfectly fine, however, there are a few things that I would like to point out. This is a step-by-step guide not only for resolving the curren...
- Fri Oct 04, 2024 6:57 am
- Forum: .NET
- Topic: TeeChart .NET For Blazor Chart not displaying
- Replies: 15
- Views: 266362