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 ) )
64,128,255
64,128,255
{0}
is replace with the item name, {1}
is the numeric amount, and {2}
is the percent amount.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 ; "explodeSeries=" & Name 1 ; // explode the first series "backgroundColor=100,100,255") ; // light-blue background "outline=false" // don't show an outline "legend=false" // don't show the legend ) ) ]
When something unexpected happens, the plug-in will pop up a dialog showing what the error message is. This makes it easy to see what went wrong.
However, in some cases, you (the developer) may prefer to show your own message to the user, or possibly not show a message at all.
In that case, you can call chartSetErrorCapture
with a parameter of true. That will suppress the error dialog from appearing to the user.
When you call this function, it is set for that plug-in for as long as FileMaker is running, so if you want to do all of your own error handling, you can just set it to true once in your startup script. However, we recommend only turning it on when your script is prepared to check for errors, and then turning it off after finishing that section.
Whether or not you suppress the error dialogs, a plugin function will return the word ERROR
if something goes wrong. It's a good idea to put your plugin functions in an 'If' statement so that you don't execute a bunch of script steps after something has gone wrong. If you'd like for your script to get the error message, you can get that by calling the chartLastError
function.
Here is an example of basic error reporting:
Set Variable [ $result = MyPluginFunction("x" ; "y" ; "z") ] If [ $result = "ERROR" ] Exit Script[ "Error occurred: " & chartLastError ] Else ... do more stuff here ... End If
Since the string "ERROR"
evaluates to false when evaluated by FileMaker, and most plugin functions return a 1
when successful, you can chain multiple dependent plugin operations together using the "and"
operator.
However, in this case the result will be a 1
or a 0
, not "ERROR"
. For example:
// chain multiple calls together
// if any of the functions fail, the calculation will
// short-circuit with a result of false
,
// and none of the subsequent function calls will be evaluated.
Set Variable [ $success =
FirstPluginFunction("x") and
SecondPluginFunction("y") and
ThirdPluginFunction("z")
]
If [not $success]
Show Custom Dialog [ "An error occurred: " & chartLastError ]
End If
Note: the above only works for plugin functions which return 1
on success! Check the documentation for each function used in this manner.
If a plugin is not installed correctly, calls to a plugin function will return "?". As part of your startup script, you should check for this occurrence and display a warning accordingly that the plugin needs to be installed. Note: when treated as a boolean true/false value, FileMaker will treat ?
as true
.
FileMaker version 11 or higher.
Java Virtual Machine (JVM) version 1.6 or later (32-bit). If you are running a JVM earlier than 1.6, you should upgrade.
Download a JVM from http://www.java.com/en/download/. Apple has a 32-bit version of Java 1.6 here
http://support.apple.com/kb/DL1572.
If you are not sure what version of Java you have installed, you can do java -version
on the command line in Windows or OS X.
Windows, or Mac OS X version 10.6 or higher.
Note to intel Mac users: running this plugin under Rosetta is not supported. Upgrade to FileMaker 8.5 to run our plugin in native Intel mode.
Drag the plugin from the MAC or WIN folder into your FileMaker extensions, and restart FileMaker.
If the plugin does not load correctly, double-check that you meet the system requirements.
You do not need to do this step unless you plan on using the plugin with Instant Web Publishing with FileMaker Server Advanced. You will need an Enterprise license to use this feature.
For installing into the Web Publishing Engine with FileMaker Server or FileMaker Server Advanced, drag the plugin from the MAC (.fmplugin file) or WIN (.fmx file) folder
into the FileMaker Server/Web Publishing/publishing-engine/wpc/Plugins
folder. If there is no Plugins
folder inside the wpc
folder, then create it manually.
Restart FileMaker Web Publishing, and now the plugins should be ready to go.
The easiest way to test whether the plugin is working is to have a calculation which calls the version function of the plugin, and display that on an IWP layout. If it shows "?", then the plugin is not working. If it shows a number, then the plugin has been installed successfully.
If you are using FileMaker Server 12.0v1 or earlier, you can follow the same procedure as detailed above for custom web publishing. However, in FileMaker Server 12.0v2 and later, the custom web publishing now runs as a 64-bit application, and requires a slightly different location. You will need an Enterprise license to use this feature.
For Mac, the single plug-in file in the MAC directory contains both 32-bit and 64-bit versions. For Windows, look for the plug-in that has the extension .fmx64 and use it in exclusively in custom web publishing.
To install 64-bit plug-ins, install either the .fmx64 or the .fmplugin to the following directory:
FileMaker Server / Web Publishing / publishing-engine / cwpc / Plugins
If it does not exist, create the Plugin folder manually. Restart FileMaker Web Publishing, and then you can then test a script that contains a plug-in and see if it returns the correct values.
Please note that plug-ins do not work with the web publishing engine of the Mac version of FileMaker Server 8.0v4.
You do not need to do this step unless you plan on using the plugin with scheduled script triggering. You will need an Enterprise license to use this feature.
/Library/FileMaker Server/Database Server/Extensions
folder.
On Windows, this is at C:\Program Files\FileMaker\FileMaker Server\Database Server\Extensions
.Configuration -> Database Server->Server Plug-ins
and check the box that says 'Enable FileMaker Server to use plug-ins', and then check the 'enabled' box for this plugin.
Click the 'save' button and wait a few seconds to make sure that the 'enabled' check box stays checked. If it does not, then there was an error loading the plugin and you should contact us for help troubleshooting.
You should now be able to write schedules that trigger scripts which use the plugin.360Works has created an AutoUpdate helper database which makes setting up Auto Update much easier. This file includes pre-configured plugin files which you can place on your server, and an auto-update script for each of our plugins which you can paste into your own solution.
You can get the AutoUpdate360Works file at fmp7://autoupdate.360works.com/AutoUpdate360Works or fmp://autoupdate12.360works.com/AutoUpdate360Works. Follow the instructions included in the file to either host your own Auto Update server or pull the files from ours.
Plugins will run in demo mode until they are registered. While running in Demo mode, the product will run for 2 hours every time you launch FileMaker / FileMaker Server / FileMaker Web Publishing Engine. The 2 hour time limit will reset every time you relaunch FileMaker. There is no expiration date when Demo mode stops working. There are no feature differences between the Demo version and the licensed version.
Once you have purchased the plugin, you can register it with the license key. Once a valid license key is entered, the product will run for as long as FileMaker is running. After FileMaker starts up with the plugin installed, open FileMaker preferences, click on the Plug-ins tab, select the plugin from the list, and click the Configure button. Enter your license key and company name in this dialog. You will only need to do this once on a given machine. Alternately, you can use the registration function to register the plugin during a startup script.
Note that if you are running the plugin with FileMaker Server / FileMaker Web Publishing Engine, you must use the registration function to register the plugin, since there is no preferences dialog on FileMaker Server to enter the license key and company name.
We love to hear your suggestions for improving our products! If you are experiencing problems with this plugin, or have a feature request, or are happy with it, we'd appreciate hearing about it. Send us a message on our website, or email us!
name
- the optional name of the chartcategoryAxisLabel
- the optional label for the category axis of the chartvalueAxisLabel
- the optional label for the value axis of the chartisVertical
- Whether to orient the chart horizontally (0) or vertically (1)use3d
- whether to apply a three-dimensional effect to the chart.ERROR
" if there was a problem (use ChartLastError for more detailed information about the nature of the error).
group
- unique group name identifier.category
- category name identifier. Typically, the same categories are repeated for each group.value
- the numeric value for the group/category combinationERROR
" if there was a problem (use ChartLastError for more detailed information about the nature of the error).
category
- a category which was set in a previous call to {@link #barChartSetDataPoint(String, String, double)}.red
- a number between 0-255green
- a number between 0-255blue
- a number between 0-255alpha
- a number between 0-255 indicating the transparency of the color. 0 is completely transparent.ERROR
" if there was a problem (use ChartLastError for more detailed information about the nature of the error).
See the Custom Parameters section for a list of parameters which this function accepts.
width
- the width of the resulting imageheight
- the height of the resulting imageadditionalParams
- additional parameterswidth
- licenseKey
- a valid license key string, or the literal string "DEMO" to run in demo mode.registeredTo
- the company name for the license key used.errorCapture
- set to true to suppress the default popups.name
- The title of the chartcategoryAxisLabel
- The label for the category axisvalueAxisLabel
- The label for the value axisisVertical
- Whether to orient the line chart vertically or horizontally (pass a 1 for vertical)use3d
- whether to apply a three-dimensional effect to the chartERROR
" if there was a problem (use ChartLastError for more detailed information about the nature of the error).
seriesName
- the name of the series (or line) that this data point will apply to.category
- category name identifier. This appears in the category axis of the line chart.value
- the numeric value for the group/category combinationERROR
" if there was a problem (use ChartLastError for more detailed information about the nature of the error).
category
- a category which was set in a previous call to {@link #lineChartSetDataPoint(String, String, String)}.red
- a number between 0-255green
- a number between 0-255blue
- a number between 0-255alpha
- a number between 0-255 indicating the transparency of the color. 0 is completely transparent.ERROR
" if there was a problem (use ChartLastError for more detailed information about the nature of the error).
The additionalParams
are optional parameters which can be used to customize the chart display.
See the Custom Parameters section for a list of parameters which this function accepts.
width
- width
- the width of the resulting imageheight
- the height of the resulting imageadditionalParams
- additional parametersname
- The optional name of the chart.use3d
- whether to use a three-dimensional effect on the chart.ERROR
" if there was a problem (use ChartLastError for more detailed information about the nature of the error).
pieChartCreate
function.
Calling this twice with the same category name will overwrite the previously set value.
category
- category namevalue
- The numeric value for the category.ERROR
" if there was a problem (use ChartLastError for more detailed information about the nature of the error).
category
- a category which was set in a previous call to {@link #pieChartSetDataPoint(String, String)}.red
- a number between 0-255green
- a number between 0-255blue
- a number between 0-255alpha
- a number between 0-255 indicating the transparency of the color. 0 is completely transparent.ERROR
" if there was a problem (use ChartLastError for more detailed information about the nature of the error).
The additionalParams
are optional parameters which can be used to customize the chart display.
See the Custom Parameters section for a list of parameters which this function accepts.
width
- height
- additionalParams
- additional parameters which customize how the chart is generatedThe valid properties are:
seriesName
- the name of the series to add the regression to. If blank, the first series is used.properties
- optional argumentsname
- The optional name of the chart (this will be displayed in the chart header)timeAxisLabel
- the optional label for the time axisvalueAxisLabel
- the optional label for the value axisERROR
" if there was a problem (use ChartLastError for more detailed information about the nature of the error).
seriesName
- The series name (or line) whose value is being set.date
- the date whose value is being set.value
- the value of the series on the specified dateERROR
" if there was a problem (use ChartLastError for more detailed information about the nature of the error).
seriesName
- a seriesName which was set in a previous call to {@link #timeSeriesChartSetDataPoint(String, String, String)}.red
- a number between 0-255green
- a number between 0-255blue
- a number between 0-255alpha
- a number between 0-255 indicating the transparency of the color. 0 is completely transparent.ERROR
" if there was a problem (use ChartLastError for more detailed information about the nature of the error).
The additionalParams
are optional parameters which can be used to customize the chart display.
See the Custom Parameters section for a list of parameters which this function accepts.
width
- width
- the width of the resulting imageheight
- the height of the resulting imageadditionalParams
- additional parameters