STK ObjectsSend comments on this topic.
IAgFmGfxContours Interface

Description

Coverage contours.

Public Properties

Public Property ColorMethodColor method for contours (color ramp or explicit).
Public Property ContourTypeContour display method (block fill or smooth fill).
Public Property IsVisibleOpt whether to display contours.
Public Property LegendContour legend.
Public Property LevelAttributesContour level display properties.
Public Property LineStyleContour lines style.
Public Property LineWidthContour Lines width.
Public Property RampColorColor ramp colors.
Public Property ShowContourLinesShow Contour Lines.
Public Property ShowUpToMaxOnlyFOM values greater than max contour level are drawn as transparent.
Public Property UseStaticContoursUse static contour settings for animation contours.

CoClasses that Implement IAgFmGfxContours

Example

Configure figure of merit contours
[C#]
contours.IsVisible = true;
contours.ContourType = AgEFmGfxContourType.eSmoothFill;
contours.ColorMethod = AgEFmGfxColorMethod.eExplicit;

// Add level ranges (batch)
contours.LevelAttributes.AddLevelRange(25, 35, 1);
IAgFmGfxLevelAttributesElement firstLevel = contours.LevelAttributes[0];
firstLevel.Color = Color.Blue;

// Add one level (individually)
IAgFmGfxLevelAttributesElement level = contours.LevelAttributes.AddLevel(55);
level.Color = Color.Red;
Configure figure of merit contours
[Visual Basic .NET]
contours.IsVisible = True
contours.ContourType = AgEFmGfxContourType.eSmoothFill
contours.ColorMethod = AgEFmGfxColorMethod.eExplicit

' Add level ranges (batch)
contours.LevelAttributes.AddLevelRange(25, 35, 1)
Dim firstLevel As IAgFmGfxLevelAttributesElement = contours.LevelAttributes(0)
firstLevel.Color = Color.Blue

' Add one level (individually)
Dim level As IAgFmGfxLevelAttributesElement = contours.LevelAttributes.AddLevel(55)
level.Color = Color.Red
© 2024 Analytical Graphics, Inc. All Rights Reserved.