Skip to content

Instantly share code, notes, and snippets.

ngx-charts: Custom Bar/Line Combo Chart Tutorial


I've been using ngx-charts when building my Angular apps and its definitely one of the best free charting frameworks available for Angular (that I've tried at least). However, one thing I noticed is the lack of documentation or guides when it comes to creating or even using custom charts. Therefore I decided to create a simple walkthrough on how to use the bar/line combo-chart avaiable as one of their demos.

Walkthrough

Source Code

StackBlitz Link: You can refer to this link to see the final product/overview of how to use the custom chart in your project.

@FWidm
FWidm / bowers_wilkins_mm1_fixes.md
Last active November 3, 2018 14:40
Fix MM-1 Bower&Wilkins speakers

Windows 8+: Install drivers and updatertool

  1. Obtain driver from http://www.bwgroupsupport.com/download/software
  2. Install drivers & Updater-Software
  • If the driver cannot be installed (default for win8, win10) enter testmode:
    1. Start CMD/Powershell as admin
    2. bcdedit /set testsigning on
    3. Reboot
    4. Reinstall the software - driver should install fine
    5. Start CMD/Powershell as admin and disable testing mode: bcdedit /set testsigning off
  1. Reboot
@bastman
bastman / docker-cleanup-resources.md
Created March 31, 2016 05:55
docker cleanup guide: containers, images, volumes, networks

Docker - How to cleanup (unused) resources

Once in a while, you may need to cleanup resources (containers, volumes, images, networks) ...

delete volumes

// see: https://github.com/chadoe/docker-cleanup-volumes

$ docker volume rm $(docker volume ls -qf dangling=true)

$ docker volume ls -qf dangling=true | xargs -r docker volume rm