Search found 16 matches

by TomAgos
Sun Mar 30, 2025 8:59 am
Forum: .NET
Topic: Issue with Custom Y-Axis Labels After Using Default Zoom
Replies: 1
Views: 536

Issue with Custom Y-Axis Labels After Using Default Zoom

Hey, In my app, I create a custom Y-axis like this: public static Axis CreateCustomYAxis(SignalVectorPair svPair) { var color = ChartDataToZData.MColorToDColor(svPair.VectorM.Color); var yAxis = new Axis { Visible = false, Horizontal = false, Grid = { Visible = false }, Labels = { Font = { Color = c...
by TomAgos
Thu Mar 20, 2025 12:36 pm
Forum: .NET
Topic: drawing layers
Replies: 1
Views: 2106

drawing layers

Hey im using the 'AfterDraw' event to manually draw a grid on the chart (with the Graphic3D instance of the chart). at the same time im adding some Annotations in the grid. my problem is that the grid lines is draw on top of the annotation, you can see it in the file i have attached: onTop.png how c...
by TomAgos
Wed Mar 19, 2025 12:42 pm
Forum: .NET
Topic: Points
Replies: 1
Views: 1034

Points

Hey im using the 'Point' series on top of 'FastLine' to show the points in the line. my question is: can i make the shape of the Pointer of Points to not fill the inner shape with the color? this is my code to create instance of Points: public static Points CreatePointsLine(DataRecVectorM vectorM, C...
by TomAgos
Mon Mar 10, 2025 11:32 am
Forum: .NET
Topic: ColorLine and FastLine
Replies: 1
Views: 2973

ColorLine and FastLine

im adding to the chart a FastLine with some random points.
this fastLine have custom y axis.
then im adding vertical ColorLine and allow drag.

assuming the ColorLine is touching the FastLine, i want to check what is the y value of this intersection point.
what is the best way to do that?

Thanks
by TomAgos
Tue Mar 04, 2025 9:22 am
Forum: .NET
Topic: Custom y axis labels
Replies: 6
Views: 18437

Re: Custom y axis labels

Hey, im trying to set the custom y axis labels to be the same color as the axis pan but its not working.
can you show me how (using the same example) ? i have tried to change '_YAxis.Labels.Font.Color' but it does nothing.
by TomAgos
Mon Mar 03, 2025 11:13 am
Forum: .NET
Topic: custom y axes title
Replies: 3
Views: 5067

Re: custom y axes title

and what if the relative positions are negative and the position units is by pixels?
by TomAgos
Mon Mar 03, 2025 9:10 am
Forum: .NET
Topic: custom y axes title
Replies: 3
Views: 5067

custom y axes title

Hey
im creating a few custom y axes and im placing them like this:
Image

(if the image isnt working, the y axes is on the left of the chart)
i need to add titles or some text for every axis, but i want the title to be on top of the axis, what is the simplest way to do that?
by TomAgos
Mon Mar 03, 2025 9:02 am
Forum: .NET
Topic: Custom y axis labels
Replies: 6
Views: 18437

Re: Custom y axis labels

Amazing! thanks!
by TomAgos
Thu Feb 27, 2025 11:21 am
Forum: .NET
Topic: Custom y axis labels
Replies: 6
Views: 18437

Re: Custom y axis labels

Hey, i have checked and the labels are added but not plotted. try this code (wpf project with MainWindow only): MainWindow.xaml.cs: using Steema.TeeChart; using Steema.TeeChart.Drawing; using Steema.TeeChart.Styles; using System; using System.Windows; using System.Windows.Forms; using System.Windows...
by TomAgos
Thu Feb 27, 2025 7:37 am
Forum: .NET
Topic: Custom y axis labels
Replies: 6
Views: 18437

Custom y axis labels

im adding a few custom y axes, im creating them like that: private Axis CreateCustomYAxis(SignalVectorPair svPair) { var color = ChartDataToZData.MColorToDColor(svPair.VectorM.Color); var yAxis = new Axis { Visible = false, Horizontal = false, Grid = { Visible = false }, Labels = { Font = { Color = ...
by TomAgos
Mon Feb 17, 2025 1:24 pm
Forum: .NET
Topic: Panning with ContextMenuStrip
Replies: 1
Views: 8624

Panning with ContextMenuStrip

Hey my chart have context menu strip (opens when right clicking) i can also pan (scroll) in the chart by holding the right key and dragging. the problem is: when im panning, the context menu is also opening how can i solve this? i dont want the context menu to open when panning. Note: WPF, but using...
by TomAgos
Wed Jan 29, 2025 8:20 am
Forum: .NET
Topic: Specific custom y axis labels
Replies: 6
Views: 27481

Re: Specific custom y axis labels

i also need to update the labels when zooming in and out, and when panning.
the axis label should display the new maximum and minimum according to the zoom and panning, so this should update in run time. ideas?
by TomAgos
Wed Jan 29, 2025 7:42 am
Forum: .NET
Topic: Specific custom y axis labels
Replies: 6
Views: 27481

Re: Specific custom y axis labels

This doesnt work:

Image

i hope the image is working..
if not: i still see all the labels... and the minimum and maximum.
and at the first y axis that i add, i dont see any labels
by TomAgos
Tue Jan 28, 2025 12:13 pm
Forum: .NET
Topic: Specific custom y axis labels
Replies: 6
Views: 27481

Specific custom y axis labels

Hey we are adding few FastLines to the chart, and for every FastLine we create y axis and attach him to it. every y axis have Min and Max using the 'SetMinMax' method. i want only 2 labels on every y axis: 1. the minimum value at the bottom 2. the maximum value at the top this is what i tried: priva...
by TomAgos
Wed Jan 22, 2025 11:58 am
Forum: .NET
Topic: Disabling Default Mouse Zoom in TeeChart for WPF
Replies: 2
Views: 9477

Re: Disabling Default Mouse Zoom in TeeChart for WPF

perfect! thank you for the fast replay