namespace Sbroenne.ExcelMcp.Core.Commands.Chart;
/// <summary>
/// Legend position constants for Excel charts.
/// Excel COM: XlLegendPosition enumeration.
/// </summary>
public enum LegendPosition
{
/// <summary>Bottom of chart (xlLegendPositionBottom)</summary>
Bottom = -4107,
/// <summary>Upper-right corner (xlLegendPositionCorner)</summary>
Corner = 2,
/// <summary>Custom position (xlLegendPositionCustom)</summary>
Custom = -4161,
/// <summary>Left side (xlLegendPositionLeft)</summary>
Left = -4131,
/// <summary>Right side (xlLegendPositionRight)</summary>
Right = -4152,
/// <summary>Top of chart (xlLegendPositionTop)</summary>
Top = -4160
}