示例#1
0
        public static LineProperties Create(COLOR color)
        {
            var ls = new LineProperties();

            ls.FillColor = color;
            return(ls);
        }
示例#2
0
        public static LineProperties Create(COLOR color, float width)
        {
            var ls = new LineProperties();

            ls.FillColor = color;
            ls.FillWidth = width;
            return(ls);
        }
示例#3
0
        public static LineProperties Create(COLOR fc, float fw, COLOR oc, float ow)
        {
            var ls = new LineProperties();

            ls.FillColor    = fc;
            ls.FillWidth    = fw;
            ls.OutlierColor = oc;
            ls.OutlierWidth = ow;
            return(ls);
        }