Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
585
Problem with a scatterchart in a composite Chart
posted

Hello NG,

how can i prevent that the color and iconstyle is changed on every postback when i use a scatterchart within a composite Chart.

 Thanks in advance for all your help!

 

Stefan

Parents
No Data
Reply
  • 17605
    posted

    You can change the iconstyle from the designer. You can try going to Composite Chart Wizard - Chart Layers - select your scatter chart from the left and choose ChartTypeAppearance and change the Icon property form Random to Circle (for example).

    The colors depends on ColorModel, you could try something like:

    this.UltraChart1.ColorModel.ModelStyle = ColorModels.CustomSkin;

    this.UltraChart1.ColorModel.Skin.PEs.Add(new PaintElement(Color.Green));

Children