Angular for Alipay G2
npm install g2-angular --save
A: webpack bundler
npm install g2 --save
You can choose load g2
script file via .angular-cli.json
or Lazy load.
(Recommend)
// .angular-cli.json
"scripts": [
"../node_modules/g2/index.js"
]
or
import { G2ChartModule } from 'g2-angular';
@NgModule({
imports: [
G2ChartModule.forRoot({
js: 'https://a.alipayobjects.com/g/datavis/g2/2.3.9/index.js'
})
]
});
B: index.html
<script src="https://a.alipayobjects.com/g/datavis/g2/2.3.9/index.js"></script>
Please follow this guidelines when reporting bugs and feature requests:
- Use GitHub Issues board to report bugs and feature requests (not our email address)
- Please always write steps to reproduce the error. That way we can focus on fixing the bug, not scratching our heads trying to reproduce it.
Thanks for understanding!
The MIT License (see the LICENSE file for the full text)