All Projects â†’ richbl â†’ ng2-visualizejs

richbl / ng2-visualizejs

Licence: MIT license
A simple demonstration that draws a Jaspersoft report/dashboard resource with Visualize.js library using the Angular Framework (aka Angular 2.0)

Programming Languages

typescript
32286 projects
CSS
56736 projects
javascript
184084 projects - #8 most used programming language
HTML
75241 projects

Projects that are alternatives of or similar to ng2-visualizejs

Awesome Ionic2 Components
Should help you to get awesome components and plugins for Ionic2
Stars: ✭ 209 (+1206.25%)
Mutual labels:  angular2
Ng Drag Drop
Drag & Drop for Angular - based on HTML5 with no external dependencies. 🎉
Stars: ✭ 233 (+1356.25%)
Mutual labels:  angular2
django-angular2-fullstack-devops
All-in-one django/angular2 seed with cli interface for multi-environment devops on aws using ansible/packer/terraform
Stars: ✭ 54 (+237.5%)
Mutual labels:  angular2
Angular4 Docker Example
Efficiently Dockerized Angular CLI example app
Stars: ✭ 212 (+1225%)
Mutual labels:  angular2
Angular2 Multiselect Dropdown
Angular 2 Dropdown Multiselect
Stars: ✭ 225 (+1306.25%)
Mutual labels:  angular2
Blog Angular
Angular įŽ”čŪ°
Stars: ✭ 238 (+1387.5%)
Mutual labels:  angular2
Angular2 Express Mongoose Gulp Node Typescript
AngularJS 2 (Updated to 4.2.0) Mean Stack application which uses Angular2, Gulp, Express, Node, MongoDB (Mongoose) with Repository Pattern Business Layer
Stars: ✭ 201 (+1156.25%)
Mutual labels:  angular2
ng-treetable
A treetable module for angular 5
Stars: ✭ 32 (+100%)
Mutual labels:  angular2
Ng2 Image Upload
Angular 2 component for image uploading
Stars: ✭ 230 (+1337.5%)
Mutual labels:  angular2
ionic2 firebase shopping cart
Shopping cart built using Ionic2 and Firebase
Stars: ✭ 21 (+31.25%)
Mutual labels:  angular2
Ngx Facebook
Angular TypeScript Wrapper for Facebook SDK
Stars: ✭ 214 (+1237.5%)
Mutual labels:  angular2
Angular5 Seed
Angular5 Seed for Application
Stars: ✭ 222 (+1287.5%)
Mutual labels:  angular2
Ng Pokedex
ðŸĩ Pokedex progressive web app built with Angular
Stars: ✭ 245 (+1431.25%)
Mutual labels:  angular2
Ngx Avatar
Universal avatar component for angular 2+ applications makes it possible to fetch / generate avatar from different sources
Stars: ✭ 210 (+1212.5%)
Mutual labels:  angular2
ng-logger
Angular logger service
Stars: ✭ 65 (+306.25%)
Mutual labels:  angular2
Angular2 Jsonapi
A lightweight Angular 2 adapter for JSON API
Stars: ✭ 202 (+1162.5%)
Mutual labels:  angular2
Ng Select
⭐ Native angular select component
Stars: ✭ 2,781 (+17281.25%)
Mutual labels:  angular2
ng-data-picker
🏄🏞 A data picker based on Angular 4+ (like native datetime picker of iOS)
Stars: ✭ 24 (+50%)
Mutual labels:  angular2
angular2-signature-pad
Signature pad component for Angular 2.x and above.
Stars: ✭ 17 (+6.25%)
Mutual labels:  angular2
Ionic Cache
Ionic and Angular cache service with IndexedDB, SQLite and WebSQL support
Stars: ✭ 248 (+1450%)
Mutual labels:  angular2

Ng2-Visualizejs

A simple demonstration that draws a Jaspersoft report/dashboard resource with the Visualize.js library using the Angular Framework (initial commit uses Angular 2.0.0-beta.17)

Interested in implementing a Visualize.js solution using the very popular ng2-bootstrap library? Check out this related project instead.

Based on Angular 2 QuickStart

This repository is based on a great learning resource, the Angular 2 QuickStart, which is the companion source code for the Angular 2 tutorial called the "5 Min Quickstart."

Note that this project has not been forked from the Angular 2 QuickStart project, so no updates made to that project will be reflected in this project.

Prerequisites

Two sets of requirements are needed:

  • Jaspersoft resources
  • Angular Framework (aka, Angular 2) resources

Jaspersoft

Required software and servers are well described on the Jaspersoft website.

Angular Framework

Node.js and npm are essential to Angular 2 development. Get them now if they're not already installed on your machine.

Verify that you are running at least node v5.x.x and npm 3.x.x by running node -v and npm -v in a terminal/console window. Older versions produce errors.

This project was originally developed using Angular 2.0.0-beta.17.

Getting Started

Clone this repo into new project folder (e.g., my-proj).

git clone  https://github.com/richbl/ng2-visualizejs  my-proj
cd my-proj

Install npm Packages

See npm and nvm version notes above

Install the npm packages described in the package.json and verify that it works:

Attention Windows developers: you must run all of these commands in administrator mode.

npm install

Install Typings (TypeScript Definition Manager)

typings install

This will create a typings folder.

Edit Visualize.js Configuration

Configuration details for the Visualize.js library are currently managed in two files:

-index.html: set the library include for the Visualize.js library script (e.g., <script src="http://visualizejsdemo.jaspersoft.com/jasperserver-pro/client/visualize.js"></script>) -app/vjs.config.service.ts: set user and resource details (i.e., reports and dashboards)

It's expected that future releases of this demonstration should permit for the dynamic loading of the Visualize.js library in the vjs.config.service.ts component.

Note that this demonstration is not designed to be production-ready: including username and password in any local script is a serious security risk.

Edit HTML Content Files

The file app/app.component.html is where the Visualize.js resources are embedded, using a custom HTML tag: <vjs-component id="dashboard_one"></vjs-component>, where the id attribute represents the id of the resource defined in the configuration component, vjs.config.service.ts.

Start the Server

The npm start command first compiles the application, then simultaneously re-compiles and runs the lite-server. Both the compiler and the server watch for file changes.

npm start

By default, the server will be running on http://localhost:3000. Open a browser page on this URL and you should see the application running.

Shut it down manually with Ctrl-C.

You're ready to go!

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].