Search found 12 matches

by sihmon
Thu Jan 26, 2023 10:54 pm
Forum: .NET
Topic: dotnet core6 image export issue
Replies: 6
Views: 4284

Re: dotnet core6 image export issue

That's not what I mean.
There is a problem with the image copied to the clipboard by clicking the btnOk button.
Similarly, the command below also has a black bar at the top.

tChart1.Export.Image.Bitmap.Save(@"C:\tmp\chart.bmp");
by sihmon
Thu Jan 19, 2023 5:34 am
Forum: .NET
Topic: dotnet core6 image export issue
Replies: 6
Views: 4284

dotnet core6 image export issue

Visual Studio 2022, dotnet core6 Steema.TeeChart.NET(4.2022.12.1) After drawing the chart, I want to save it as an image. I've drawn it with the function below, but the first one draws well, but from the second it draws everything in black. If I open TeeChart Editor Tool and copy or save from the Ex...
by sihmon
Thu Oct 27, 2022 1:23 am
Forum: .NET
Topic: stacked bar issue with .net6
Replies: 2
Views: 3166

Re: stacked bar issue with .net6

All right. I see.
I think the chart problem will be solved by adding the 0th value.
However, it is a problem that the check box is not available in Legend.
Thanks anyway.
by sihmon
Wed Oct 26, 2022 6:09 am
Forum: .NET
Topic: IsoSurface Issue with .net6
Replies: 10
Views: 5691

Re: IsoSurface Issue with .net6

Wow, thank you so much.
It's perfect.
by sihmon
Wed Oct 26, 2022 2:49 am
Forum: .NET
Topic: stacked bar issue with .net6
Replies: 2
Views: 3166

stacked bar issue with .net6

Visual Studio 2022, dotnet core6 Steema.TeeChart.NET(4.2022.10.11) Hello Christopher I want to use checkbox for legend, I can't see the checkbox in the legend. And if I remove the annotation and bar1 and bar2 have the 0th value, it works well. However, when there is no 0th value, there is a problem ...
by sihmon
Thu Oct 20, 2022 5:29 am
Forum: .NET
Topic: IsoSurface Issue with .net6
Replies: 10
Views: 5691

Re: IsoSurface Issue with .net6

please, Try running this code in version 4.0.2009.62332 You can see the difference. public Form1() { InitializeComponent(); InitializeChart(); } private void InitializeChart() { var iso = new IsoSurface(tChart1.Chart); iso.FillSampleValues(); tChart1.Aspect.View3D = true; tChart1.Aspect.Chart3DPerce...
by sihmon
Wed Oct 19, 2022 6:39 am
Forum: .NET
Topic: IsoSurface Issue with .net6
Replies: 10
Views: 5691

Re: IsoSurface Issue with .net6

Our conversation went wrong. 4.0.2009.62332 In version 4.0.2009.62332, a rainbow color is completed with one color for each wire. 4.2022.9.26 dotnet6 core In version 4.2022.9.26, a rainbow color is completed with multiple colors for each wire. https://bit.ly/3TcSn8T https://bit.ly/3SbcMcX 4.2022.10....
by sihmon
Wed Oct 19, 2022 5:35 am
Forum: .NET
Topic: LegendPalette Issue with .net6
Replies: 4
Views: 3787

Re: LegendPalette Issue with .net6

Thanks Christopher.
It was fixed very quickly.
by sihmon
Thu Oct 06, 2022 2:35 am
Forum: .NET
Topic: LegendPalette Issue with .net6
Replies: 4
Views: 3787

Re: LegendPalette Issue with .net6

Thanks for registering for the issue tracker.
by sihmon
Thu Oct 06, 2022 2:30 am
Forum: .NET
Topic: IsoSurface Issue with .net6
Replies: 10
Views: 5691

Re: IsoSurface Issue with .net6

The IsoSurface.WireFrame shape has changed. Previously, I used wireframe set to true. However, now I Have to set it to false and use it. before, there was only one color space per wire. Now several colors are mixed in one wire. Can I draw with one color on one wire? isoSurface1.Brush.Visible= false;...
by sihmon
Mon Oct 03, 2022 11:22 pm
Forum: .NET
Topic: IsoSurface Issue with .net6
Replies: 10
Views: 5691

IsoSurface Issue with .net6

Visual Studio 2022, dotnet core6 Steema.TeeChart.NET(4.2022.7.14) I'm making a chart with dotnet core 6.0. In the old version of tchart, I Drew IsoSurface well in rainbow style. But now it's not painted in a rainbow style. Is there anything I need to check? ========================== this.isoSurface...
by sihmon
Mon Oct 03, 2022 11:13 pm
Forum: .NET
Topic: LegendPalette Issue with .net6
Replies: 4
Views: 3787

LegendPalette Issue with .net6

Visual Studio 2022, dotnet core6
Steema.TeeChart.NET(4.2022.7.14)

I'm making a chart with dotnet core 6.0.
In the dotnet framework 4.7.2 environment, LegendPalette is visible.
However, it is not visible in a dotnet core 6.0 environment.
Is there anything special I need to set up?