This project was built using Angular CLI 1.4.2 along with Geon's Angular Components for Sigplot, type-friendly extensions, and LGS Innovation's SigPlot.
Run npm install
.
Run npm start
for a dev server. Navigate to http://localhost:4200/
. The app will automatically reload if you change any of the source files.
If you would like to develop with linked libraries or exposing the webserver to your external network interface, use npm start:dev
.
See the Angular CLI documentation for more details, however the gist is:
npm install -g @angular/cli
ng new my-app
cd my-app
npm install --save \
sigplot-ng \
sigplot-ts \
sigplot@git://github.com/geontech/sigplot.git#develop-2.0-ts
Note: At this time, the implementation uses a fork of LGS Innovation's
develop-2.0
branch which contains minor changes: addingplugins
to the base module, and extensive typings definitions. We intend to submit a pull request to get these changes merged soon.
Next, in your application's top module, import the SigPlot Components Module (to gain access to the components):
import { SigPlotComponentsModule } from 'sigplot-ng';
// At your NgModule
@NgModule({
imports: [
SigPlotComponentsModule
]
})
export class YourModule {}
The additional types used in this library as well as mirrors of the Typings found in sigplot
are provided by sigplot-ts
.