You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
510 B
C#

using GeoSigma.SigmaDrawerStyle.Converter;
using System.Collections.Generic;
namespace SigmaDrawerElement.Converter
{
public class ArcStyleConverter : EnumConverter<ArcStyle>
{
protected override Dictionary<ArcStyle, string> CreateMaps()
{
return new Dictionary<ArcStyle, string>
{
{ArcStyle.DrawTypeArc, "弧"},
{ArcStyle.DrawTypeChord, "弦"},
{ArcStyle.DrawTypePie, "饼"},
};
}
}
}