Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Chart menu allows you to select a form binder or define your own SQL query to display the chart data for the most common graph types. You can also include charts in your userview Dashboard Menu.

Image Modified

Chart Menu Properties

...

Chart Title: Chart Title to be displayed as part of the generated graph.

Image Modified

Figure 1: Edit Chart Properties

...

Code Block
languagesql
titleExample
SELECT
    c_status AS 'status',
    COUNT(c_status) AS 'count' 
FROM
    app_fd_tix_tickets 
WHERE
    c_status IS NOT NULL 
GROUP BY
    c_status

Image Modified

Example 2:

Code Block
languagesql
titleSQL
SELECT
    c.c_claimant,
    SUM( CAST( replace(c.c_total, '$', '') AS DECIMAL(10, 2)) ) AS 'total',
    AVG( CAST( replace(c.c_total, '$', '') AS DECIMAL(10, 2)) ) AS 'avg' 
FROM
    app_fd_j_expense_claim c 
GROUP BY
    c.c_claimant

Image Modified

Image Modified


Image Modified

Figure 2: SQL Chart Properties - Datasource

...

Y-axis Values: Y-axis dataset.

Image Modified

Figure 3: Figure 3: Data Binder & Chart Data Mapping Properties

...

Comma-separated values (CSV) of color codes.

Image Modified

Figure 4: Chart Options

Example 1: #3333FF,#66FF00,#FF9933,#990000

Image Modified

Example 2: red,orange,yellow,green,blue,indigo

Image Modified

Info
titleWhat are the default colors?

http://stackoverflow.com/questions/18332440/what-are-the-jqplot-default-series-colors

...

Custom Footer: Custom Footer in HTML.


Image Modified

Figure 5: Advanced Properties

...