ChartObjectsUpdatedEventArgs How can I get Y value from a Horizental Line?
Created at 06 May 2022, 18:57

ChartObjectsUpdatedEventArgs How can I get Y value from a Horizental Line?
06 May 2022, 18:57
Hello,
I use the below event to detect if a HorizentalLine has been modified. And the code can easily get horizentalLine's name, but how can I get the Y value of the modified horizentalLine?
The code below, horizentalLine.Y.ToString("0.0") report error.
Thanks, if any advice.
private void Chart_ObjectsModified(ChartObjectsUpdatedEventArgs obj)
{
var horizentalLine = obj.ChartObjects.FirstOrDefault(iObject => iObject.ObjectType == ChartObjectType.HorizontalLine);
if (horizentalLine != null)
{
Print("Found object with name {0}, Y-Value: {1}", horizentalLine.Name, horizentalLine.Y.ToString("0.0");
}
}
Capt.Z-Fort.Builder
08 May 2022, 00:55
RE:
I have resolved this problem by bringing another method to return the Y-value.
TheNiatpac said:
@Capt.Z-Fort.Builder