Example #1
0
        //---------------------------------------------------------------------
        private void ApplyEmptyPointMarkerStyle(CParametreSerieDeChart pSerie, Series s)
        {
            CMarkerStyle style = pSerie.EmptyPointMarker;

            s.EmptyPointStyle.MarkerBorderColor = style.BorderColor;
            s.EmptyPointStyle.MarkerBorderWidth = style.BorderWidth;
            s.EmptyPointStyle.MarkerColor       = style.BackColor;
            //s.MarkerImage = style.MarkerImage;
            s.EmptyPointStyle.MarkerImageTransparentColor = style.MarkerImageTransparentColor;
            s.EmptyPointStyle.MarkerSize  = style.MarkerSize;
            s.EmptyPointStyle.MarkerStyle = CConvertisseurChartEnumToMSEnum.GetMSMarkerStyle(style.MarkerStyle);
        }