Skip to content

Chart

Description

Charts are visual representations of data that use symbols, colors, and shapes to communicate information clearly and efficiently.

The 5 types of Charts we use are:

  1. Bar charts: Use bars to represent data points. Often used for comparing values across categories.
  2. Line charts: Show trends and changes over time. Connecting data points with lines allows for easy visualization of patterns.
  3. Area charts: Its similar to line charts, but displays the area below the curve.
  4. Pie charts: Show the proportion of each category in a data set as slices of a pie. Useful for highlighting the relative size of different parts of a whole.
  5. Sankey Charts: The Sankey diagram encodes each node of the raw data into a small rectangle. Different nodes are presented in different colors as far as possible.

Use Case

  1. Data Visualization Dashboards
  2. Web Analytics
  3. Financial Analysis
  4. Interactive Presentations and Report
  5. Captivating Presentations
  6. Interactive Reports
  7. Geographic Data Visualization

Interactivity

  1. Connect your forms to external charting services: Google Charts, ChartBlocks, or others.
  2. Pass form data to these services to generate interactive charts.
  3. Embed the generated charts back into your form using iframes or other techniques.

API

Methods

Name Description Parameters
this.addClassName Add style class to a form item (fields: String|String[], className: String)
this.removeClassName Remove style class from a form item (fields: String|String[], className: String)
this.getComponent Returns a component whose id has been passed as a parameter (component_ID: String) : Object
this.getValues Gets the current values of all fields () : Object
this.hide Hides the field (fields: String|String[])
this.show Displays the field (fields: String|String[])
this.getValue Get A Value From a component (fieldName: String)
this.setData Set the data in the field. The Value object should be of type { componentId: componentValue } (Value: Object)

Info

  1. The show() and hide() methods can also be used to control the visibility of a chart in response to user input.
  2. Fields refers to a component ID or a list of component IDs. You can fetch the ID from the Component Attribute panel in the Page Builder.
  3. Before using this.show(fields), make sure the component is hidden. This can be done using this.hide(fields) or by enabling the Hidden checkbox in the Component Attribute panel.

Steps to use the methods for the Page Builder components

  1. Go to Form Attribute Action Panel Setting (Mounted | refresh | click 'Add action').
  2. Write the method/code as shown in the Example below.
  3. Click on Save.
  4. On the main screen click on Save again.
  5. Click on Preview to see the code in action.

Example

  1. this.addClassName(fields, className)

    • Go to Form Attribute Style Sheets add the class
      .abc{ // abc is the class name
      background-color: red;
      }
      
    • Follow the steps mentioned above, under Steps to use the methods for the Page Builder components
    • this.addClassName('echarts_moy2lbor', 'abc')
  2. this.removeClassName(fields, className)

    this.removeClassName('echarts_moy2lbor', 'abc')
    

  3. this.getValue(fieldName)

    var chartname = this.getValue('echarts_moy2lbor');
    console.log('getValue', chartname);
    

  4. this.getValues()

    var data = this.getValues();
    console.log(data);
    

  5. this.hide(fields)

    var fields= ['echarts_moy2lbor']
    this.hide(fields)
    

  6. this.show(fields)

    var fields= ['echarts_moy2lbor']
    this.show(fields)
    

  7. this.disable(['fields'])

    this.disable(['echarts_moy2lbor'])
    

  8. this.enable(['fields'])

    this.enable(['echarts_moy2lbor'])
    

  9. this.getValue('fieldName')

    var chartname = this.getValue('echarts_moy2lbor');
    console.log('getValue', chartname);
    

  10. this.getComponent('component_ID')

    var chartname = this.getComponent('echarts_moy2lbor');
    console.log('getComponent', chartname);
    

  11. this.setData(Value)

    this.setData(
    {
    "echarts_moy2lbor":[
    {
        "2015":43.3,
        "2016":90,
        "2017":10,
        "product":"Matcha Latte"
    },
    ]
    }
    

Config

Name Description Icon
ID The chart component's unique identifier
Width [Optional] Width of the field
Height [Optional] Height of the field
Default Default data for the charts
Custom Class An HTML class attribute which allows further customisation See Form Attribute > Style Sheets
Attribute Action Enable Data Binding to connect the data to UI

Chart Config

  1. Basic: Set the basic fields in a chart.

  2. Sub-Title: Enter the sub-title of the chart.

  3. Title Vertical Position: Place the sub-title either at the Top, Center or Bottom.

  4. Title Horizontal Position: Place the sub-title either at the Left, Center or Right.
  5. Title Gap: Space between the Main Title and Sub-Title.

  6. Enable Tooltip open small, contextual pop-up window that provides additional information or guidance when users hover over, point to, or tap an element on a GUI.

  7. Enable Legend to decode the visual elements used to represent data.

  8. Enable Toolbox to get options like Zoom and Zoom Reset.

2.Series: When you have more than 2 charts in a single chart.

  • Type: Select Bar, Line, Pie, Area or Sankey charts.
  • Label Formatter: It helps you display the following information: Model variation includes: * {a}: series name. * {b}: the name of a data item. * {c}: the value of a data item. * {@xxx}: the value of a dimension named 'xxx', for example, {@product} refers to the value of 'product' dimension. * {@[n]}: the value of a dimension at the index of n, for example, {@[3]} refers to the value at dimensions[3].
  • Name: Name of the Series.
  • Encode X: The X-axis index in a graph refers to the numerical values or categories displayed along the bottom horizontal axis.
  • Encode Y: The Y-axis index in a graph refers to the numerical values displayed along the vertical axis.

Info

When you select Line Charts some additional fields are displayed:
Symbol: Allows you to choose the symbol of the connecting the line.
Connect Nulls: Whether to connect the line across null points.

Info

When you select Area some fields are displayed:
Color: Select the area under the curve.

Info

A Sankey chart is a type of diagram that helps you show how things flow from one part to another.

Sankey charts are handy for understanding and visualizing how resources or information move through complex systems. They're used in various fields to make it easier to see and analyze these flows.

3.X-Axis: To change the settings for X-Axis.

  • Grid Index: Select the grid you wish to place your X-Axis.
  • Name: Enter the name of the X-Axis.
  • Formatter: Select the value you want to display on X-axis like Duration, Millisecond, Decimal, Percent, Bytes.

4.Y-Axis: To change the settings for Y-Axis.

  • Grid Index: Select the grid you wish to place your Y-Axis.
  • Name: Enter the name of the Y-Axis.
  • Formatter: Select the value you want to display on X-axis like Duration, Millisecond, Decimal, Percent, Bytes.

4.Grid: To change the settings for Grid when we've multiple charts.

  • Left: Place the chart on left-side using the slider.
  • Top: Place the chart on the Top using the slider.
  • Width: Change the width of the chart using the slider.
  • Height: Change the height of the chart using the slider.

First time User?

If you are using the Page Builder components on the ConnexCS platform for the first time, we request you to use our guide on steps to use the Components.