This series of articles aims to provide a proof of concept for building real time charts with latest technologies. For your information this project can be reused on other projects Angular 5 and prior. Before preparing the project, we…
Tag: Google Charts
Building real time charts with Angular 5, Google Charts, SignalR Core, .NET Core 2, Entity Framework Core 2 and SqlTable dependency, part 3
<< Back to part 2 We are done with the project setup and the back end implementation, now let’s focus the front end solution. What does it look like ? We have : A folder that contains the…
Building real time charts with Angular 5, Google Charts, SignalR Core, .NET Core 2, Entity Framework Core 2 and SqlTable dependency, part 2
<< Back to part 1 Let’s take a look on what does the project look like : To make it work this project contains : A DbContext (GaugesContext.cs) for EntityFramework Core A Hub (GaugeHub.cs) for SignalR that broadcast…
Using Google Charts in Angular 4 project, part 2
Integrate Google Charts and make reusable chart components We previously saw how to use Google Charts in an classical HTML5 / Javascript page, now it’s time to see how we can make it work in an Angular 4 project. We…
Using Google Charts in Angular 4 project, part 1
Introducing Google Charts Google Charts is an HTML5/SVG thats provides many kind of charts. The most common way to use Google Charts is with simple JavaScript that you embed in your web page. You load some Google Chart libraries, list…