Tag: Google Charts

Add Google Charts into SharePoint Framework Web Part
Add Google Charts into SharePoint Framework Web Part
Blog Posts

This post is based on the question in sp-dev-docs repo. The question is how can we render a Google Charts in SPFx web part. Actually, it’s pretty easy thing to do. As a starting point I’ll be using the code provided in the question I mentioned above: <script type=”text/javascript” src=”https://www.gstatic.com/charts/loader.js”></script> <script type=”text/javascript”> google.charts.load(“current”, {packages:[“corechart”]}); google.charts.setOnLoadCallback(drawChart); function drawChart()… READ MORE