All Projects → cipchk → g2-angular

cipchk / g2-angular

Licence: MIT license
Angular for Alipay G2

Programming Languages

typescript
32286 projects
javascript
184084 projects - #8 most used programming language
HTML
75241 projects
shell
77523 projects

Projects that are alternatives of or similar to g2-angular

g2plot-vue
g2plot for vue, both 2 and 3
Stars: ✭ 106 (+292.59%)
Mutual labels:  g2, antv
React-G2Plot
🤖 Unofficial react component wrapper for @antvis/G2Plot
Stars: ✭ 21 (-22.22%)
Mutual labels:  g2, antv
G2plot
🍡 An interactive and responsive charting library
Stars: ✭ 2,072 (+7574.07%)
Mutual labels:  g2, antv
Learn Angular From Scratch Step By Step
Angular step by step tutorial covering from basic concepts of Angular Framework to building a complete Angular app using Angular Material components. We will go through the main building blocks of an Angular 7 application as well as the best practices for building a complete app with Angular.
Stars: ✭ 140 (+418.52%)
Mutual labels:  angular-components
Ej2 Angular Ui Components
Syncfusion Angular UI components library offer more than 50+ cross-browser, responsive, and lightweight angular UI controls for building modern web applications.
Stars: ✭ 159 (+488.89%)
Mutual labels:  angular-components
Ng Select
⭐ Native angular select component
Stars: ✭ 2,781 (+10200%)
Mutual labels:  angular-components
spinners-angular
Lightweight SVG/CSS spinners for Angular
Stars: ✭ 21 (-22.22%)
Mutual labels:  angular-components
Ng Simple Slideshow
A simple, responsive slideshow for Angular 4+.
Stars: ✭ 119 (+340.74%)
Mutual labels:  angular-components
ngx-sortable
ngx-sortable is an angular sortable list components that support drag and drop sorting
Stars: ✭ 19 (-29.63%)
Mutual labels:  angular-components
Ngx Quill Editor
🍡@quilljs editor component for @angular
Stars: ✭ 234 (+766.67%)
Mutual labels:  angular-components
Ng Drag Drop
Drag & Drop for Angular - based on HTML5 with no external dependencies. 🎉
Stars: ✭ 233 (+762.96%)
Mutual labels:  angular-components
Fundamental Ngx
Angular components implementation of Fundamental Library Styles guidelines. The library is aiming to provide an Angular implementation of the components designed in Fundamental Library Styles.
Stars: ✭ 166 (+514.81%)
Mutual labels:  angular-components
theme-set
💄 Customize theme for G2, G2Plot of AntV(孵化中)
Stars: ✭ 35 (+29.63%)
Mutual labels:  g2
Material
A lightweight Material Design library for Angular based on Google's Material Components for the Web.
Stars: ✭ 143 (+429.63%)
Mutual labels:  angular-components
ng2-expansion-panels
Expansion Panels component for Angular 2
Stars: ✭ 19 (-29.63%)
Mutual labels:  angular-components
Coreui Angular
https://coreui.io/angular/
Stars: ✭ 139 (+414.81%)
Mutual labels:  angular-components
ngx-mat-timepicker
A true material timepicker
Stars: ✭ 45 (+66.67%)
Mutual labels:  angular-components
Awesome Ionic2 Components
Should help you to get awesome components and plugins for Ionic2
Stars: ✭ 209 (+674.07%)
Mutual labels:  angular-components
Fc Angular
快速搭建angular后台管理系统的admin template。Fast development platform based on angular8, ng.ant.design built multi-tab page background management system (continuous upgrade) ^_^
Stars: ✭ 171 (+533.33%)
Mutual labels:  angular-components
Alyle Ui
Minimal Design, a set of components for Angular 9+
Stars: ✭ 234 (+766.67%)
Mutual labels:  angular-components

g2-angular

Angular for Alipay G2

NPM version Build Status

Demo

Install

1. You can install g2-angular from npm.

npm install g2-angular --save

2. Important: You need install and include g2 library in app via webpack bundler or html.

A: webpack bundler

npm install g2 --save

You can choose load g2 script file via angular.json or Lazy load.

(Recommend)

// angular.json
"scripts": [
  "../node_modules/g2/index.js"
]

or

import { G2ChartModule } from 'g2-angular';

@NgModule({
  imports: [
    G2ChartModule.forRoot({
      js: 'https://gw.alipayobjects.com/os/antv/pkg/_antv.g2-3.4.1/dist/g2.min.js'
    })
  ]
});

B: index.html

<script src="https://gw.alipayobjects.com/os/antv/pkg/_antv.g2-3.4.1/dist/g2.min.js"></script>

How to use it with:

  • angular-cli please refer to demo.
  • Stackblitz sample available here.

Troubleshooting

Please follow this guidelines when reporting bugs and feature requests:

  1. Use GitHub Issues board to report bugs and feature requests (not our email address)
  2. 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!

License

The MIT License (see the LICENSE file for the full text)

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].