Tag: SPFX

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

SharePoint Development with the SharePoint Framework
SharePoint Development with the SharePoint Framework
Ebooks

The SharePoint Framework (SPFx) is a great new option for developing SharePoint solutions. Many developers are creating full-trust based solutions or add-in solutions, while also figuring out where and how SPFx fits in the big picture. This exclusive free chapter Introducing SharePoint Online for Developers from SharePoint Development with the SharePoint Framework by Jussi Roine and Olli Jääskeläinen starts… READ MORE

SPFX client-side web part with the WebPart Properties
SPFX client-side web part with the WebPart Properties
Blog Posts

The Modern SharePoint Framework have a new WebPart Properties pane. The property pane allows end users to configure the web part with a bunch of properties. The property pane has three key metadata: Pages Pages provide you the flexibility to separate complex interactions and put them into one or more pages. Pages then contain Header… READ MORE