End User Reporting Charts

Overview

Providing additional charting options to use with the end user reporting application. These charts can also be used independently, but are structured much like an Appian chart for seamless integration with the existing End User Reporting framework.

Key Features & Functionality

  • Heatmap Chart - A heatmap is a graphical representation of data where the individual values contained in a matrix are represented as colors.
  • Organization Chart - Organization charts are a common case of hierarchical network charts, where the parent/child relationships between nodes are visualized.
  • Packed Bubble Chart - Packed bubble charts are visualizations where the size and optionally the color of the bubbles are used to visualize the data. The positioning of the bubbles is not significant, but is optimized for compactness. Try dragging the bubbles in this chart around, and see the effects.
  • Spiderweb Chart - A spiderweb chart or radar chart is a variant of the polar chart. Spiderweb charts are commonly used to compare multivariate data sets.
  • Timeline Chart - A Timeline chart visualizes important events over a time span. Charts with a Timeline series display every data point as a separate event along a horizontal or vertical line. The Timeline series is also referred to as a Timeline Diagram. For each point defined in the timeline series, a flag is placed with a descriptive text. The description will then be visible on hovering the points.
  • Word Cloud - A word cloud is a visualization of a set of words, where the size and placement of a word is determined by how it is weighted.
Anonymous
Parents
  • Hello, could an option be added to create a word cloud that only has horizontal words?

    This can be done with plotOptions.wordcloud.rotation documented here: https://api.highcharts.com/highcharts/plotOptions.wordcloud.rotation

    Specifically to have only horizontal words it can be implemented with:

    series: [{
    type: 'wordcloud',
    data,
    name: 'Occurrences',
    rotation: {
    from: 0,
    to: 0,
    orientations: 1
    },
    placementStrategy: 'random'
    }],


    With this rotation the chart appears to be a bit "blocky", so I think it could benefit from the addition of the 'random' placement strategy.

     please let me know if this is something that could be added, thank you.

Comment
  • Hello, could an option be added to create a word cloud that only has horizontal words?

    This can be done with plotOptions.wordcloud.rotation documented here: https://api.highcharts.com/highcharts/plotOptions.wordcloud.rotation

    Specifically to have only horizontal words it can be implemented with:

    series: [{
    type: 'wordcloud',
    data,
    name: 'Occurrences',
    rotation: {
    from: 0,
    to: 0,
    orientations: 1
    },
    placementStrategy: 'random'
    }],


    With this rotation the chart appears to be a bit "blocky", so I think it could benefit from the addition of the 'random' placement strategy.

     please let me know if this is something that could be added, thank you.

Children
No Data