Skip to main content

Charts

Table of Contents:


Charts

360Works Charts User Guide

ChartPlugin is a FileMaker Plugin for generating various types of graphical charts. Currently supported are: pie charts, bar charts, line charts, and time series chart.

Before creating a chart, you must register the plugin using chartRegister.

The charting API is split into sections corresponding to each type of chart. In general, you call a method to create a chart, then populate data points, set color options, and generate the graphic.

User Guide

See the 360Works Charts User Guide for a comprehensive list of all functions, their parameters, and their usage.

Note:

Nearly all documentation for 360Works Charts is contained in the User Guide, unlike some other products.

To Demo and Purchase

See the 360Works Charts page to download a demo of 360Works Charts, view pricing, or purchase it.

Example Usage

Here is an example for creating a pie chart containing five values. The let() function is used to do the setup for the chart, and then the pieChartShowGraphic is called at the end to set the actual value of the container to the chart image.

Set Variable [ $result; Let(
debug = pieChartCreate( "Quoted Hours Worked" ) and
pieChartSetDataPoint( Name 1 ; Quoted 1 ) and
pieChartSetDataPoint( Name 2 ; Quoted 2 ) and
pieChartSetDataPoint( Name 3 ; Quoted 3 ) and
pieChartSetDataPoint( Name 4 ; Quoted 4 ) and
pieChartSetDataPoint( Name 5 ; Quoted 5 );
pieChartShowGraphic( 360; 360 ) )