// pictureoptions?

        internal SLDataPointOptions(List <Color> ThemeColors)
        {
            ShapeProperties  = new SLShapeProperties(ThemeColors);
            InvertIfNegative = null;
            Marker           = new SLMarker(ThemeColors);
            iExplosion       = null;
            bBubble3D        = null;
        }
Example #2
0
 private void Initialize(List <Color> ThemeColors)
 {
     ShapeProperties  = new SLShapeProperties(ThemeColors);
     InvertIfNegative = null;
     Marker           = new SLMarker(ThemeColors);
     iExplosion       = null;
     bBubble3D        = null;
     Smooth           = false;
     vShape           = null;
 }
        internal SLMarker Clone()
        {
            var m = new SLMarker(ShapeProperties.listThemeColors);

            m.Symbol          = Symbol;
            m.bySize          = bySize;
            m.ShapeProperties = ShapeProperties.Clone();

            return(m);
        }