Skip to content

Versions

At Aktiun we take into account the importance of keeping our products correctly versioned and documented, so we have implemented the following mechanisms to verify the versions being used.

Chartfactor Toolkit

To check the version of the library, please open a web browser's development window in the tab where the application is running directly (not in an iframe) and execute the following commands:

1
2
3
cf.getVersion()         // Gets the major and minor version
cf.getBuildVersion()    // Gets the build version a datetime UTC in the format YYYYMMDD_HH_MM
cf.getLicenseInfo()     // Displays a string with the current license information 

Chartfactor Toolkit Providers

All providers have methods to get the version and the build. When you add a provider to your project, a global vairable with the name of the provider is added to the global context. For example, to check the version of the spark provider you can execute the following commands:

1
2
sparksql.getVersion()         // Gets the major and minor version
sparksql.getBuildVersion()    // Gets the build version a datetime UTC in the format YYYYMMDD_HH_MM

Chartfactor Studio

Chartfactor Studio adds a global variable to its page context that allows to obtain the ChartFactur Studio version as shown below:

1
2
cfStudio.getVersion()         // Gets the major and minor version
cfStudio.getBuildVersion()    // Gets the build version a datetime UTC in the format YYYYMMDD_HH_MM