-
Notifications
You must be signed in to change notification settings - Fork 3
PivotJS
Thomas Möller edited this page Nov 29, 2021
·
5 revisions
PivotJS
This class contains the properties related to the pivot.js script.
The following sections contain a detailed description of the properties and methods.
Calling this method saves the pivot.js file in the path of the database.
BAPT.Scripts.PivotJS.SaveToDisk
--
With this property you pass the url of the cdn of pivot.js.
https://cdnjs.cloudflare.com/ajax/libs/pivottable/2.23.0/pivot.min.js
BAPT.Scripts.PivotJS.CDN = "https://cdnjs.cloudflare.com/ajax/libs/pivottable/2.23.0/pivot.min.js"
With this property you pass the path to the pivot.js file.
CurrentProject.Path & "\pivot.min.js"
BAPT.Scripts.PivotJS.PathFilename = CurrentProject.Path & "\pivot.min.js"
With this property you can specify where the pivot.js file is located.
Possible values are:
- CDN
- LocalFile
When you choose "CDN" then the url in the property CDN is inserted to the html file.
When you choose "LocalFile" then the path and file name in the property PathFilename is inserted to the html file.
CDN
BAPT.Scripts.PivotJS.Source = ptScriptSource.CDN