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
350
How to set series from code
posted

I'm doing a simple query that for each security principal (A), n values ​​are recovered side. (A1, A2, A3 .... An)

This data comes from a dataset (a query from database)

By assigning the data from the dataset to the DataSource control displays all the data without performing a series grouping.

 

How I can from code by performing grouping sets for my data? thanks

  • 26458
    Offline posted

    Are you using a column chart?
    Are there multiple rows in your data and more than two columns?

    The default behavior of the column chart is to group all column values within a single row together. Each row will be a separate group.

    Make sure your dataset looks something like:

               column1 , column2 , column3
    row1        A1             A2              A3
    row2       B1             B2              B3
    row3       C1            C2              C3