Welcome to the Xceed Community | Help
Community Search  

How can add more than barClustered to same tick

Sort Posts: Previous Next
  •  07-02-2008, 7:08 AM Post no. 13367

    How can add more than barClustered to same tick

    How can  add more than bar that 

    MultiBarMode = MultiBarMode.Clustered  at same tick

    ( i need to draw bar serries with child at same tick 2d)

    ????????????????

    Filed under:
  •  07-03-2008, 3:39 PM Post no. 13417 in reply to 13367

    Re: How can add more than barClustered to same tick

    Not sure I understand your request.  Normally, this is how to setup bar series to be clustered :

    BarSeries bar = ( BarSeries )chart.Series.Add( SeriesType.Bar );

    bar.MultiBarMode = MultiBarMode.Series;

    BarSeries bar1 = ( BarSeries )chart.Series.Add( SeriesType.Bar );

    bar1.MultiBarMode = MultiBarMode.Clustered;

    BarSeries bar2 = ( BarSeries )chart.Series.Add( SeriesType.Bar );

    bar2.MultiBarMode = MultiBarMode.Clustered;


    André
    Software Developer and Tech Support
    Xceed Software Inc.
View as RSS news feed in XML
Contact | Site Map | Reviews | Legal Terms of Use | Trademarks | Privacy Statement Copyright 2008 Xceed Software Inc.