Search found 9 matches

by park si won
Fri Sep 06, 2024 1:59 am
Forum: .NET
Topic: Bottom subaxis manual text is not added
Replies: 3
Views: 7060

Re: Bottom subaxis manual text is not added

I modified the code, but only the first one is the same, and the rest don't exist.
by park si won
Thu Sep 05, 2024 9:22 am
Forum: .NET
Topic: Bottom subaxis manual text is not added
Replies: 3
Views: 7060

Bottom subaxis manual text is not added

Only the first sublaxis will be added and the rest will not work. Is it possible to add subaxis label in Text rather than Datetime? My environment is .net8 and wpf. var line = new Steema.TeeChart.Styles.Line(Chart1.Chart); Chart1.Axes.Bottom.Increment = 3; var rnd = new Random(); for (var i = 0; i <...
by park si won
Thu Sep 05, 2024 8:36 am
Forum: .NET
Topic: When you click the legend, series high light?
Replies: 5
Views: 9551

Re: When you click the legend, series high light?

If you double-click on the items in the Legend box, all of those Legend items and chart series also disappear.
by park si won
Thu Sep 05, 2024 8:33 am
Forum: .NET
Topic: When you click the legend, series high light?
Replies: 5
Views: 9551

Re: When you click the legend, series high light?

For the source you sent, the same legend clicked disappears. The source version does not appear to be the same as the nuget version. The nuget version works fine, but only the source version disappears from the legend's series and works strangely. private void Chart2_ClickLegend(object sender, Syste...
by park si won
Thu Sep 05, 2024 4:47 am
Forum: .NET
Topic: When you click the legend, series high light?
Replies: 5
Views: 9551

Re: When you click the legend, series high light?

The latest version of Nuget is fine, but the source code version I have is getting an error. No overload for 'Chart2_ClickLegend' matching 'MouseEventHandler' delegate.(CS0123) // The following error occurs. Chart2.ClickLegend += Chart2_ClickLegend; private void Chart2_ClickLegend(object sender, Ste...
by park si won
Thu Sep 05, 2024 2:18 am
Forum: .NET
Topic: When you click the legend, series high light?
Replies: 5
Views: 9551

When you click the legend, series high light?

How do I implement the series high light function when I click the Legend item.
My environment is .net8 and wpf.

I always appreciate your help.
by park si won
Mon Aug 26, 2024 12:27 am
Forum: .NET
Topic: I want to know the area capture information.
Replies: 6
Views: 15781

Re: I want to know the area capture information.

Thank you for your response. When I tested the sample, I had some additional inquiries. How do I erase the square? function does not have a clear option. I only want to highlight some points in the series included in the square and try to redraw the chart. Is it possible to refresh only the correspo...
by park si won
Thu Aug 22, 2024 11:32 pm
Forum: .NET
Topic: I want to know the area capture information.
Replies: 6
Views: 15781

Re: I want to know the area capture information.

I'm sorry I didn't tell you in advance. My environment is wpf and c#.net8.

private void TChart1_MouseUp(object sender, System.Windows.Input.MouseButtonEventArgs e)
{
up= new System.Drawing.Point(e.X); // An error occurs in the e.X part.
}
by park si won
Thu Aug 22, 2024 7:42 am
Forum: .NET
Topic: I want to know the area capture information.
Replies: 6
Views: 15781

I want to know the area capture information.

Hi, I have a question about T-chart.(Steema TeeChart for .NET Source Code 2023 4.2023.06.14 (.NET8 Compile)) While dragging and specifing some points(series) in chart, I need to get (x,y) points value in dragged area. Is there any function or a way that I can use for it? If so, plz let me know.(With...