Search found 1603 matches

by Christopher
Thu Jun 22, 2023 4:21 pm
Forum: .NET
Topic: Space/Separation between bars with TeeChart for .Net
Replies: 1
Views: 9551

Re: Space/Separation between bars with TeeChart for .Net

Hello, When i plot two bars the separation between them is a bit too much, what could i do to shorten this distance? This can be achieved by compressing the bottom axis with offset pixels, e.g. public Form1() { InitializeComponent(); var bar = new Bar(tChart1.Chart); bar.Add(1); bar.Add(10); tChart1...
by Christopher
Thu Jun 22, 2023 4:18 pm
Forum: .NET
Topic: Axis variables colliding with TeeChart for .Net
Replies: 1
Views: 9353

Re: Axis variables colliding with TeeChart for .Net

Hello, I have an issue where the axis variables collide because of the quantity of text they have, is there any property or solution to force the chart to respect this ones between them inserting some space or separation? Our usual recommendation in these circumstances is to change the axis labels' ...
by Christopher
Thu Jun 22, 2023 4:15 pm
Forum: .NET
Topic: Indexation issue with TeeChat for .Net
Replies: 1
Views: 9406

Re: Indexation issue with TeeChat for .Net

Hello, am assigning each bar to its position, the problem i have is that the bars do not center to the axis (variable name+date), i know about a property called indexation, but i do not really know how to use it in order to center bars to the variable at the axis. Below you can see my current state ...
by Christopher
Thu Jun 22, 2023 3:46 pm
Forum: .NET
Topic: Bar marks colliding with Teechart for .Net
Replies: 1
Views: 9318

Re: Bar marks colliding with Teechart for .Net

Hello, I am experiencing an issue where the top bar marks collide between them. Is there any option or solution to avoid this? The SeriesMarks class (e.g. tChart1.Series[0].Marks) has an AutoPosition property, but this only makes its calculations on the Series class which calls it. Otherwise we have...
by Christopher
Thu Jun 22, 2023 3:34 pm
Forum: .NET
Topic: Axis delimiter has disappeard with TeeChart for .Net v2023
Replies: 1
Views: 9647

Re: Axis delimiter has disappeard with TeeChart for .Net v2023

Hello, I have encounter the following issue after upgrading my project library from the 2016 to the latest 2023 one. My chart axis delimiter has disappeared, is there a new option to get it back? This is usually the Visible property of the AxisPen, e.g. public Form1() { InitializeComponent(); tChart...
by Christopher
Thu Jun 22, 2023 3:25 pm
Forum: .NET
Topic: Performance issue with a lot of data with TeeChart for .Net v2023
Replies: 1
Views: 9052

Re: Performance issue with a lot of data with TeeChart for .Net v2023

First, when i plot a lot of data the graphic starts to get a bit laggy you can see what happens when we try to Zoom. As well, the NearestPoint Event to the mouse starts to be a bit unresponsive. With the 2016 version this was not a problem: I've been updating our benchmark speed tests which you can...
by Christopher
Thu Jun 22, 2023 9:21 am
Forum: .NET
Topic: 3D issues with TeeChart for .NET v2023
Replies: 1
Views: 8015

Re: 3D issues with TeeChart for .NET v2023

Hello, Using this code: public Form1() { void TChart1_AfterDraw(object sender, Steema.TeeChart.Drawing.IGraphics3D g) { tChart1.Header.Text = $"Version: {Utils.Version} Rotation: {tChart1.Aspect.Rotation} Elevation: {tChart1.Aspect.Elevation}"; } InitializeComponent(); for (int i = 0; i < 4; i++) { ...
by Christopher
Wed Jun 21, 2023 6:10 pm
Forum: .NET
Topic: Chart Bevel Settings Not Working as Expected (Regression)
Replies: 1
Views: 8132

Re: Chart Bevel Settings Not Working as Expected (Regression)

Hello Kris, thank you for reporting this issue to us, I have documented it in id=2617 . The git diff is: diff --git a/TeeChart.PCL.NET5/TeeChart.WinForm/Drawing/Canvas.cs b/TeeChart.PCL.NET5/TeeChart.WinForm/Drawing/Canvas.cs index 65717a7d..0e44267f 100644 --- a/TeeChart.PCL.NET5/TeeChart.WinForm/D...
by Christopher
Wed Jun 21, 2023 4:42 pm
Forum: .NET
Topic: Show in Legend Checkbox on Series Tab Does Nothing
Replies: 1
Views: 8108

Re: Show in Legend Checkbox on Series Tab Does Nothing

Hello Kris, thank you for your bug report, which I have documented in id=2616 . The fix to this is: diff --git a/TeeChart.PCL.NET5/Headless/TeeChart/Series.cs b/TeeChart.PCL.NET5/Headless/TeeChart/Series.cs index ec7fe6c2..db04b190 100644 --- a/TeeChart.PCL.NET5/Headless/TeeChart/Series.cs +++ b/Tee...
by Christopher
Tue Jun 20, 2023 4:34 pm
Forum: .NET
Topic: Manual DataSource Causes Exception
Replies: 3
Views: 8923

Re: Manual DataSource Causes Exception

Hello Kris, this is now fixed, and the diff for you to fix the sourcecode, if you so wish, is this: diff --git a/TeeChart.PCL.NET5/TeeChart.WinForm/Editors/Series/SeriesEditor.cs b/TeeChart.PCL.NET5/TeeChart.WinForm/Editors/Series/SeriesEditor.cs index 225fb07d..a4641a3d 100644 --- a/TeeChart.PCL.NE...
by Christopher
Tue Jun 20, 2023 4:18 pm
Forum: .NET
Topic: Manual DataSource Causes Exception
Replies: 3
Views: 8923

Re: Manual DataSource Causes Exception

Hello Kris,

thank you for the bug report, as is standard procedure we can add these reports directly to our issue tracker, as I have done in this case with id=2615.
by Christopher
Tue Jun 20, 2023 3:51 pm
Forum: .NET
Topic: How to draw line and area types on a same chart ??
Replies: 1
Views: 8086

Re: How to draw line and area types on a same chart ??

Hello, for drawing the area under a curve, you can use the SeriesRegion tool like this: public Form1() { InitializeComponent(); var line = new Line(tChart1.Chart); line.FillSampleValues(1000); tChart1.Axes.Bottom.SetMinMax(600, 1000); _ = new SeriesRegionTool(tChart1.Chart) { AutoBound = false, Lowe...
by Christopher
Mon Jun 19, 2023 3:30 pm
Forum: .NET
Topic: Dependencies of Steema.TeeChart.NET
Replies: 11
Views: 15463

Re: Dependencies of Steema.TeeChart.NET

Hello, Great, when the next meeting is scheduled? For us, this will determine how we act in the short term. We will let you know when we've come to a decision as to what to do in this area. One simple solution would be to split off the TeeChart.Server.dll from the other assemblies, just as we do for...
by Christopher
Mon Jun 19, 2023 2:30 pm
Forum: .NET
Topic: Dependencies of Steema.TeeChart.NET
Replies: 11
Views: 15463

Re: Dependencies of Steema.TeeChart.NET

Hello, 1. SixLabors.ImageSharp.Drawing and SixLabors.Fonts are referenced (directly and indirectly) but only available as beta version since more than 5 years. This does not feel right when we have purchased a commercial product. We can understand your concern, although it must be said we chose SixL...
by Christopher
Thu Jun 08, 2023 9:24 am
Forum: .NET
Topic: Access to "! All features" ?
Replies: 1
Views: 8206

Re: Access to "! All features" ?

Hello, apologies for not making the source of this clear! What it is is the menu of our features demo which you can run on your machine by cloning our one of our GitHub repos: For TeeChart Pro: https://github.com/Steema/TeeChart-NET-Pro-Samples For TeeChart Business https://github.com/Steema/TeeChar...