github.com/erda-project/erda-infra@v1.0.9/providers/component-protocol/components/complexgraph/readme.md (about)

     1  ## Complex Graph Component
     2  
     3  ### Data Struct
     4  
     5  |  Field   | Description  |
     6  |  ----  | ----  |
     7  | Title  | The title of line graph  |
     8  | Dimensions  | Defining multiple legend in a Complex Graph |
     9  | XAxis  | X-axis property definition |
    10  | YAxis  | Y-axis property definition |
    11  | Series  | Y-axis data |
    12  | Inverse  | Inverse the x,y axis, the default is not inverse |
    13  
    14  ### Axis Struct
    15  
    16  |  Field   | Description  |
    17  |  ----  | ----  |
    18  | Type  | Axis Type  |
    19  | Name  | Axis Name  |
    20  | Dimensions  | List of dimensions on the current axis  |
    21  | Position  | Axis position,x-axis optional: bottom, top, y-axis optional left, right  |
    22  | Data  | Indicates the x-axis data when the axis is the x-axis  |
    23  | DataStructure  | Data structures on the same axis  |
    24  
    25  ### Sere Struct
    26  
    27  |  Field   | Description  |
    28  |  ----  | ----  |
    29  | Name  | Sere Name  |
    30  | Dimension  | data dimension  |
    31  | Type  | Data display type, optional: bar,line  |
    32  | Data  | Data |
    33  
    34  ### Demo
    35  
    36  [Complex Graph Demo](../../examples/components/complexgraph_demo)