Navigation
  • SEARCH HERE
  • SOLUTIONS
    • Information Security Solutions
      • Enterprise Application Security Solutions in Asia
      • Network & Infrastructure Security Solutions
      • Zero Trust Security
      • Security Information and Event Management
      • Remote Monitoring & Management (RMM)
      • File Integrity Management
      • Systems Administration Tools
      • Data Loss Prevention
      • Data / Password Recovery
      • IT Management Solution Offering | Distributor in Asia
      • Identity and Access Management Solution Offering | Distributor in Asia
      • Employee Activity Monitoring (EAM)
      • Digital Forensic Investigation
    • Software Development Solutions
      • Integrated Development Environments
      • Development Components
        • UI Tools
        • Networking Components
        • Office Components
        • Barcode Components
        • Communication Components
      • Imaging Solutions
      • Software Localization
      • Release Automation & Management
      • eLearning Authoring Solutions
      • Charting Solutions
      • PDF Solutions
      • Reporting Solutions
      • Testing & QA
      • Text Retrieval / Enterprise Search
      • Database
  • Services
    • Live Solution Walkthroughs
    • Implementation Services
    • Best Practices Consulting
    • Pre-Sales and Post-Sales Services
  • What's New
    • Our Event
    • Our Blogs
    • Special Offers
  • About
    • About LOGON Software Asia
    • Our Partnership
  • Publishers - Join our network
  • Resellers - Expand your portfolio
  • Procurement Managers
Site logo
  • Solutions
    • Information Security Solutions
      • Identity and Access Management
        • Privileged Access Management (PAM)
        • Multi-Factor Authentication (MFA)
        • Identification Verification (IV)
        • Self-Service Password Reset (SSPR)
      • Network & Infrastructure Security
        • DDoS Mitigation and Protection
        • Digital Forensic Investigation
        • Malware Detection & Analysis
        • Network Monitoring Software
        • Email Security
        • Log Monitoring
      • Endpoint & Device Security
        • Patch Management
        • Remote Monitoring & Management (RMM)
        • Employee Activity Monitoring (EAM)
        • Mobile Device Management (MDM)
      • IT Management
        • IT Service Management
        • IT Asset Management
        • Software Asset Management
        • Hardware Asset Management
        • Software License Management
        • Systems Administration Tools
      • Application Security
        • Development Security | Shift Left AppSec | SAST, SCA, IAST
        • Runtime Protection Solutions | DAST, RASP, WAF, Container Security
        • Strategic Management Solutions | ASPM, MAST, VAPT
      • Data Security
        • Data / Password Recovery
        • File Integrity Management
        • Data Loss Prevention
      • Cloud Security
        • Cloud Security Posture Management
        • Cloud Work Protection
      • External Attack Surface Management
        • Cyber Threat Intelligence
        • Third Party Risk Management
      • Security Operations & Incident Management
        • Security Information and Event Management
        • Security Orchestration, Automation and Response (SOAR)
      • Zero Trust Security
    • Software Development Solutions
      • Integrated Development Environments
      • Imaging Solutions
      • UI Tools
      • Charting Solutions
      • Developer Tools
      • Database
      • Networking Components
      • Office Components
      • Barcode Components
      • Release Automation & Management
      • Software Localization
      • Communication Components
      • Automated Testing
      • eLearning Authoring Solutions
      • Reporting Solutions
      • Text Retrieval / Enterprise Search
      • Testing & QA
  • Services
        • Live Walkthrough Sessions

          Experience the full feature of our key solutions through live platform

          View All Sessions >
        • Implementation Services
        • Pre-Sales and Post-Sales Services
        • Best Practices Consulting
  • Partners
    • Our Partners
    • Partner with LOGON Today!
      • Vendors - Join Our Network
      • Resellers - Expand Your Portfolio
      • Procurement Managers
  • Resources
        • ABOUT US

        • About Us
        • Our Locations
        • Careers@LOGON - We are hiring !
        • DISCOVER

        • Our BlogsNEW BLOGS
        • Our EventsJOIN UPCOMING EVENTS
        • LOGON to CyberSecurity PodcastNEW EPISODES
        • GET HELP

        • Contact Us
        • Help Desk
        • Request a Demo
        • Request a Quote
        • COMPLIANCE

        • 🇭🇰 Hong Kong PDPO
        • 🇮🇳 India DPDP Act
        • 🇸🇬 Singapore PDPA
        • 🇹🇭 Thailand PDPA
  • More results...

View large
Blog, FusionCharts Blog

How to Get the Most Out of Your Investment Analytics | FusionCharts

How to Get the Most Out of Your Investment Analytics

This article was originally published by LOGON’s partner FusionCharts. Click here to view the original article.

If you are looking to get the best out of your Investment Analytics, then Fusioncharts’ Investment Portfolio Dashboard is the ideal tool for you. Essentially, our Investment Portfolio Dashboard contains a series of charts and analytical tools that help you budget your finances. This JavaScript dashboard presents a detailed report of your investment spending, ordered by country, asset classes, as well as rating groups.

Furthermore,  Fusioncharts’ Investment Portfolio Dashboard gives you key investment metrics. These include your rate of return, the extent of your portfolio distribution, and your level of risk.

 

What can you do on the Investment Portfolio Dashboard?

The portfolio dashboard tells you a lot about your investment strategy. It keeps records of your assets’ increasing or depreciating value throughout the year. It also tracks your total amount invested, number of investments, and rate of return. FusionCharts displays these key figures clearly at the top of the dashboard.

The bar graph sorts your investment dollar amount by rating group. In addition, the line plot measures trends collected from your investment decisions. The Total Investment by Asset Class is a pie chart that separates your corporate, cash, CMO, and other buy-ins by percent owned.

The scatter plot gives you an estimate of your rating group by weighing its market value against the book value. The Total Investment by Country displays your international assets by shading countries on a world map.

To take a closer look, explore the live demo packed full of features by switching between chart types or hovering over key points.

There are other options available if you choose to add JavaScript charts to your Angular app, though you would need to create an account to download the source code.

 

How do you get the dashboard up and running in an Angular environment? 

Before you open the program, as a minimum requirement, you must have Node JS 8.10 and npm 5.6 installed on your device. To install, Unzip the project files and extract the folder. Initialize npm install or npm i to download any remaining dependencies.

Next, input the npm start or ng serve — baseHref=/demos/dashboards/investment-portfolio/ command to launch the server. The last step is to visit the server at http://localhost:4200 on your browser.

For a demo installation of this lightweight Angular component, you need both the angular-fusioncharts and the original fusioncharts libraries. To begin, make a chart in Angular by importing the specified modules (e.g. BrowserModule, NgModule, AppComponent) from the README tutorial.

Now, you want to add this code into your Angular AppComponent:

import { Component } from '@angular/core';
@Component({
  selector: 'my-app',
  templateUrl: './app.component.html'
})

export class AppComponent {
  dataSource: Object;
  title: string;
  constructor() {
    this.title = 'Angular  FusionCharts Sample';
    this.dataSource = {
      chart: {
        caption: 'Countries With Most Oil Reserves [2017-18]',
        subCaption: 'In MMbbl = One Million barrels',
        xAxisName: 'Country',
        yAxisName: 'Reserves (MMbbl)',
        numberSuffix: 'K',
        theme: 'fusion'
      },
      data: [
        { label: 'Venezuela', value: '290' },
        { label: 'Saudi', value: '260' },
        { label: 'Canada', value: '180' },
        { label: 'Iran', value: '140' },
        { label: 'Russia', value: '115' },
        { label: 'UAE', value: '100' },
        { label: 'US', value: '30' },
        { label: 'China', value: '30' }
      ]
    };
  }
}

The HTML snippet that goes along with it is here:

<!-- You can now use fusioncharts component in app.component.html -->
<h1>
  {{title}}
</h1>

<fusioncharts
    width="600"
    height="350"
    type="Column2D"
    dataFormat="JSON"
    [dataSource]="dataSource"
</fusioncharts>

If you’re working with events, you have to insert FusionCharts HTML into the template. This defines the block size and its data format (in this case, JSON). To import an event object, copy the JavaScript code for the class AppComponent, the constructor, and the plotRollOver that takes an event parameter.

Applying chart API is another story.  This is because you’re using an instance from the initialized event directly on the template. Be sure to get the FusionCharts HTML block and save its chart instance. The chart instance has the title, type, dataSource object, and label captions. You can also implement FusionTime, though it deals with the visualization of time series analytics instead of events.

To learn more about integrating Angular dashboards, visit the JS library demo on GitHub. 

 

What are the steps to implementing the Angular 2 Component? 

If you want to browse the entire collection of custom charts, then you will appreciate FusionCharts’ Angular Directive. It gives you the freedom to build responsive, interactive, and exportable dashboards.

The Angular 2 component preserves data binding. It also allows for JSON and XML formats, and offers advanced configurations at your fingertips. In addition, it offers you API support and many animations for drill-downs into the finer details of your graphs. From time series to world maps, you can even add charts during runtime to preview them before you deploy them to an app.

Here is what you need to begin setting up an Angular project on FusionCharts:

  1. The only prerequisites to initiating Angular 2 are Node.js and NPM downloads. Test it on your machine by executing node -v and npm -v. Install all utilities in the first project directory.
  2. To launch the dashboard you need the FusionCharts modules. Import the @NgModule as instructed to retrieve all dependencies and realize your first chart.
  3. Prepare your data in tabular form so that it fits into the labels and values of the x and y axes for a 2D plot. This is shown under the chartData constant.
  4. Once you have the data filled in, it’s time to edit the styling of your charts. Label the captions and axis names or change the theme to make it presentable.
  5. Add the finishing touches to your chart by rendering it using the AppComponent class, located in your root project file. Remember to set the chart container size via its HTML attributes.

Put it all together, and the final result should appear exactly like this:

// In app.component.ts
import { Component } from '@angular/core';
@Component({
selector: 'app',
templateUrl: 'app.component.html'
})

export class AppComponent {
dataSource: Object;
chartConfig: Object;

constructor() {
this.chartConfig = {
width: '700',
height: '400',
type: 'column2d',
dataFormat: 'json',
};

this.dataSource = {
"chart": {
"caption": "Countries With Most Oil Reserves [2017-18]",
"subCaption": "In MMbbl = One Million barrels",
"xAxisName": "Country",
"yAxisName": "Reserves (MMbbl)",
"numberSuffix": "K",
"theme": "fusion",
},

"data": [{
"label": "Venezuela",
"value": "290"
}, {
"label": "Saudi",
"value": "260"
}, {
"label": "Canada",
"value": "180"
}, {
"label": "Iran",
"value": "140"
}, {
"label": "Russia",
"value": "115"
}, {
"label": "UAE",
"value": "100"
}, {
"label": "US",
"value": "30"
}, {
"label": "China",
"value": "30"
}]
};
}
}

Here is the HTML template to accompany it:

<!-- in app.component.html -->
<fusioncharts
    [chartConfig]=chartConfig
    [dataSource]=dataSource >
</fusioncharts>

Design mobile pie, column, area, line, and other charts to implement on your web app.


FusionCharts Solutions

FusionCharts Suite XT

From simple charts like line, column, and pie to domain-specific charts like heatmaps, radar, and stock charts we’ve got you covered. Start building your dashboards with FusionCharts today.
View Product

FusionTime

FusionTime helps you visualize time-series and stock data in JavaScript, with just a few lines of code.
View Product

FusionExport

Export full dashboards in multiple formats (PDF, image). Go beyond export of individual charts – enable download of livedashboards or automatically generate them on server in an email-friendly format
View Product

Book a Free Consultation Session with our specialist

Book Now
Contact Us Today

FOLLOW US ON

  • LinkedIn
  • Facebook
  • Instagram
  • Twitter
  • YouTube
Read Next:
Application Security BlogArtificial IntelligenceBlogLOGON Blog
AI-Augmented Penetration Testing: Meeting the Scale Challenge
Application Security BlogArtificial IntelligenceBlogIT Management BlogLOGON Blog
The First Autonomous AI Cyber Attack is Here: Is Your Enterprise Ready?
Application Security BlogBlogLOGON Blog
Shift Left, Verify Right: The Blueprint for Modern Application Security Across Asia

Privacy Policy Company Overview

COMPANY

Our Location Career with LOGON Our Partners

SERVICES

Training Services Implementation Services Pre-Sales and Post-Sales Services Best Practices Consulting

GET IN TOUCH

Phone:
Hong Kong: +852 2512 8491
India: +91 70220 22744 / +91 63668 26133
Email: [email protected] ©2025 LOGON International Ltd. All rights reserved
logon logo WHITE

Search engine

Use this form to find things you need on this site

More results...

Fill in the form below
  • This field is for validation purposes and should be left unchanged.
  • This field is hidden when viewing the form
  • This field is hidden when viewing the form

Watch On-demand Webinar

  • This field is for validation purposes and should be left unchanged.

Get Your Free UserLock Trial

  • This field is for validation purposes and should be left unchanged.

Download Your Free Trial 10-Day Trial Today

  • Downloading and evaluating Smart Package Studio is quick and easy
  • Includes a short introductory guide that suggests smart features to try
  • Access the full functionality of Smart Package Studio during the trial
  • This field is for validation purposes and should be left unchanged.

Request for Priority Support with our support team

  • This field is for validation purposes and should be left unchanged.
  • Drop files here or
    Max. file size: 30 MB.

    Get Free Assessment of your Web Asset

    Request a free non-intrusive security assessment of your website. Get a report with an overview of client-side security risks.

    • This field is for validation purposes and should be left unchanged.
    • This field is hidden when viewing the form

    Recommend a Topic

    • This field is for validation purposes and should be left unchanged.

    Partner with Us on the next episode

    • This field is for validation purposes and should be left unchanged.

    Watch On-demand Webinar

    • This field is for validation purposes and should be left unchanged.
    Start PreCrime Network for Free

    Oops! We could not locate your form.

    Book a Free Demo Today

    Get Your Free Trial

    Oops! We could not locate your form.

    Get Your Free Trial
    • This field is for validation purposes and should be left unchanged.
    • This field is hidden when viewing the form
    • This field is hidden when viewing the form
    Request for Training Quote

    Oops! We could not locate your form.

    Request for Training Quote

    Oops! We could not locate your form.

    Request for Training Quote

    Oops! We could not locate your form.

    Request for Training Quote
    • This field is for validation purposes and should be left unchanged.
    • Please enter a number from 1 to 20.
    • This field is hidden when viewing the form
    Request for Training Quote
    • This field is for validation purposes and should be left unchanged.
    • Please enter a number from 1 to 20.
    • This field is hidden when viewing the form
    Request for Training Quote
    • Please enter a number from 1 to 20.
    • DD slash MM slash YYYY
    Request for Training Quote
    • This field is for validation purposes and should be left unchanged.
    • Please enter a number from 1 to 20.
    • DD slash MM slash YYYY
    Request for Training Quote
    • This field is for validation purposes and should be left unchanged.
    • Please enter a number from 1 to 20.
    • DD slash MM slash YYYY
    Request for Training Quote
    • This field is for validation purposes and should be left unchanged.
    • Please enter a number from 1 to 20.
    • This field is hidden when viewing the form