AG Studio is available for download from NPM. Once installed, you need to import the package and optionally register the AI module.
Installation Copy Link
Install the ag-studio-angular package, which also installs ag-studio:
npm install ag-studio-angular
You can test AG Studio locally without a licence. To test in production, access support, and remove the watermark and console warnings, Request a Trial Licence.
ag-studio-angular and ag-studio versions must be identical to ensure that all features work correctly. Matching AG Grid and AG Charts Versions are also required.
In order to access AI Features, register the AgStudioAiModule:
import { AgStudioAiModule, AgStudioModuleRegistry } from 'ag-studio';
// Register AI features
AgStudioModuleRegistry.registerModules([AgStudioAiModule]);
It is also possible to register the AI module directly to an instance of Studio:
<ag-studio
[modules]="modules"
/* other studio properties ... */ />
this.modules = [AgStudioAiModule]; Importing Copy Link
Import the AgStudio component from the ag-studio-angular package:
import { AgStudio } from 'ag-studio-angular';