コード例 #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);
        }