Governed Dashboards
  • About Dashboard Designer
    • What is Dashboard Designer?
    • Why is it used?
  • Getting Started
    • Accessing the Designer Module
    • Overview of Designer Module
      • Homepage
        • Guided Tour
        • Left Menu Panel
          • New
          • Manage
          • Open Dashboard
          • Preferences
          • Save As
          • Help
          • Exit
      • Dashboard Canvas Page
        • Right side Panel
          • Connection Page
          • Chart Container
          • Manage Window
          • Script Window
          • Guided Tour
        • Canvas Properties
          • Global Properties
          • Dashboard Themes
        • Context Menu Properties
  • Create New Workspace
    • Workspace Creation: Complete Flow
    • Creating a Workspace
    • Renaming a Workspace
    • Deleting a Workspace
    • Sharing a Workspace
  • Create New Dashboard
    • Dashboard Creation: Basic Workflow
    • Adding a New Dashboard
    • Create Connection
    • Drag and Drop Charts
    • Associate the Dataset
    • Preview the Dashboard
    • Save the Dashboard
    • User Alert Notification
  • Managing Options for a Dashboard
    • Open Dashboard in Designer
    • Publish a Dashboard
    • Share a Dashboard
    • Dashboard Version Control
    • Action Menu
      • Preview Dashboard
      • Export to Local Disk
      • Rename
      • Delete
      • Moving a Dashboard
      • Information Icon
      • Dashboard as Template
  • Connecting to a Data Source
    • Accessing the Data Connectors
    • Establishing a Data Connection
      • CSV Connection
      • Excel Connection
      • Data Service Connection
      • Data Store Connection
      • Data Sheet Connection
        • Data Sheet Enhancements
      • WebSocket Connection
      • Merged Connection
  • Charts Gallery
    • Charts
      • Area chart
      • Bar Chart
      • Bubble Chart
      • Circumplex Chart
      • Column Chart
      • Funnel Chart
      • Histogram Chart
      • Inverted Funnel
      • KPI Tile
      • Line Chart
      • Map Chart
      • Mito Plot
      • Mixed Chart
      • Pie Chart
      • Project Timeline
      • Pyramid Chart
      • Scatter Plot
      • Spark Line
      • Spider Chart
      • Waterfall Chart
    • Grids
      • Data Grid
      • Paging Grid
      • Data Sheet
      • Scorecard
      • Pivot Grid
    • Filters
      • Checkbox
      • Combobox
      • Hierarchical Combobox
      • List
      • Radio Button
    • Advanced Charts
      • Benchmark Analysis
      • Box Plot
      • Candle Stick
      • Chevron
      • Data Search
      • Decision Tree
      • Group Bar
      • Group Column
      • Heat Map
      • Sankey
      • Text Analyzer
      • Time Series
      • Decomposition
      • Knowledge Graph
      • Treemap
      • Trellis
      • Word Cloud
      • New Word Cloud
    • Other Charts
      • Box
      • Bullet
      • Date Picker
      • Export
      • Filter Chips
      • Filter Saver
      • Gauge
      • Graphics
      • Guided Tour
      • H-Slider
      • Image
      • Info Button
      • Input Box
      • Label
      • Legend
      • Progress Pie
      • Semi Gauge
      • Stepper
      • SVG Image
      • Text Box
      • Trend
      • URL Button
      • V-Slider
      • Tab Component
      • Inputbox component
      • Button component
    • Custom Charts
    • Common Chart Properties
      • Background
      • Title & Sub-title
      • X & Y Axis Properties
      • Legend Properties
      • Formatter
      • Axis Setup
      • Export Options
      • Copy Paste Chart Properties
  • Dashboard Objects
    • Manage Dashboard Components
    • Dashboard Objects Properties
  • Configurations
    • Filtering the Data
    • Drill Through
      • Drill Highlighter
    • Dataset Properties
    • Indicators in Charts
    • Tooltip(Default & Custom)
    • Data Label
    • Geo Mapping
    • Language Mapping
    • Legend Mapping
    • Alerts in Grids
  • Script Help Section
    • Navigate to Script Help page
    • How to use Scripts?
Powered by GitBook
On this page
  • Exporting Chart
  • Export Chart to CSV with Plugin Script
  • Plugin Script used
  • Export with Formatter
Export as PDF
  1. Charts Gallery
  2. Common Chart Properties

Export Options

PreviousAxis SetupNextCopy Paste Chart Properties

Last updated 6 months ago

Check out the given walk-through on how to use various Export options on the Designer charts.

Exporting Chart

  • Navigate to the Designer homepage.

  • Click the Dashboard Designer option.

  • Click the Add Dashboard option (You can use the New option to create a new dashboard).

  • The Dashboard Canvas page opens.

  • Click the Data Connectors icon.

  • Create a new Data Connection.

  • Click the Component Library icon.

  • The charts menu opens.

  • Select a chart component and drag it to the dashboard canvas. E.g., the Bar chart is used in the image.

  • Use the Dataset option to associate the data connection with the dragged charting component.

  • Provide the data fields under the Category and Series.

  • Open the Component Properties.

  • The Export Options are displayed.

  • Use a checkmark to enable the Context menu for the Export options.

  • The Context menu will appear based on the selected Export options.

  • Based on the provided information for the following list the information will get exported:

    • Export Heading

    • Export Sub-Heading

    • Export File Name

    • Global Export Type

    ​​

  • Navigate to the dashboard preview screen.

  • Use the right-click to get the Export Context menu.​

  • Click on an Export category.

  • The Dashboard gets downloaded in the concerned export option.

  • Click the Print Preview option to print the Dashboard preview.

  • Click the Show Data option to display the data in a grid format. ​

Please Note:

  • While saving a dashboard (for the first time) the user gets the Export option choosing which dashboard gets exported as a BVZX file.

  • Legend also gets exported in PDF when associated with a chart.

Export Chart to CSV with Plugin Script

Users can export a chart into CSV using a plugin script as well.

Check out the illustration on how to use a plugin script for exporting a chart data into CSV.

  • Navigate to a dashbord with at least two components. In this case, Bar chart contains mapped data and the Label component is used to map the plugin script.

  • Click the script icon to open the dashboard level and component level script page.

  • Choose the Label comopnent.

  • Enter the plugin script to export the chart data into CSV format.

  • The chart data will be exported in a CSV file.

Plugin Script used

var item = sdk.getWidget('component');
item.plugin.m_excelexportext='csv';
item.plugin.exportToCSV();

Please Note: The following old script in use is deprecated.

var item = sdk.getWidget('component');
item.plugin.m_exceleportext = 'csv'
item.plugin.exportToExcel() 

Export with Formatter

The users can export the chart data with formatter to Excel or CSV formats.

Check out the illustration on exporting a chart data into Excel or CSV with Formatter.

  • Navigate to a dashbaord and select a charting component mapped with some data.

  • Open the Formatter properties and define some fomatters for the selected chart.

    • Unit

    • Precision

    • Currency

    • Position

    • Number Formatter

  • Make sure that Excel Options are enabled for the chart.

  • Click the Preview icon.

  • Access the Export context menu in the preview mode with right click.

  • Click on Export to Excel and Export to CSV in turns to export the data into Excel or CSV.

  • The data will be exported to the .xlsx and .csv files.

  • Open the exported Excel & CSV files the data will appear in it with the selected formatter options.

Exporting Data into CSV with plugin script
Exporting Data to Excel or CSV with Formatter
Bar data with Formatter exported to Excel
Bar data with Formatter exported to CSV