Wednesday, 16 November 2016

SharePoint CSS Tricks - Rounded Corner

The default navigation in SharePoint does not have many cool effects like Rounded corners and many times in the real world, the end users would like to have a Cool Navigation.

The steps below illustrate how to apply CSS code to a SharePoint element on a page. The steps can be extended to many others CSS customisations for many SharePoint elements.

https://youtu.be/x3-aOFek1a8

Monday, 14 November 2016

SharePoint Cool Chart with Canvas JS

SharePoint Cool Charts

This series explores integration of Beautiful Charts with SharePoint.



Canvas JS
Below is a simple code which displays the data of Fruits in Chart Form.
<!DOCTYPE HTML>
<html>
<head>
<script src="http://canvasjs.com/assets/script/canvasjs.min.js"></script>
<script type="text/javascript">

window.onload = function () {
                var chart = new CanvasJS.Chart("chartContainer", {
                                theme: "theme2",//theme1
                                title:{
                                                text: "Basic Column Chart - CanvasJS"             
                                },
                                animationEnabled: false,   // change to true
                                data: [             
                                {
                                                // Change type to "bar", "area", "spline", "pie",etc.
                                                type: "column",
                                                dataPoints: [
                                                                { label: "apple",  y: 10  },
                                                                { label: "orange", y: 15  },
                                                                { label: "banana", y: 25  },
                                                                { label: "mango",  y: 30  },
                                                                { label: "grape",  y: 28  }
                                                ]
                                }
                                ]
                });
                chart.render();
}
</script>
</head>
<body>
<div id="chartContainer" style="height: 300px; width: 100%;"></div>
</body>
</html>


Hurray, Step 1 was done and was glad to see the chart in action. Next step was to get the values dynamically.Below is the code.
<!DOCTYPE HTML>
<html>
<head>
<script src="http://canvasjs.com/assets/script/canvasjs.min.js"></script>
<script type="text/javascript">

var dataChart = [{ label: 'apple',  y: 10  },{ label: 'banana', y: 25  }];
dataChart.push({ label: 'kiwi', y: 25  });
alert(dataChart);
window.onload = function () {
                var chart = new CanvasJS.Chart("chartContainer", {
                                theme: "theme2",//theme1
                                title:{
                                                text: "Basic Column Chart - CanvasJS"             
                                },
                                animationEnabled: false,   // change to true
                                data: [             
                                {
                                                // Change type to "bar", "area", "spline", "pie",etc.
                                                type: "column",
                                                dataPoints: dataChart
                                }
                                ]
                });
                chart.render();
}
</script>
</head>
<body>
<div id="chartContainer" style="height: 300px; width: 100%;"></div>
</body>
</html>

The data section of the HTML code for Chart needs to be replaced with SharePoint List data. A list called Fruits is created in the site
Fruits

Title
Value
Apple
10
Orange
20
Kiwi
30

If the above list is not created, please create a “Fruits” list of “Custom List” type.
Then , create a page to display the chart and Add a Script Editor Web Part with the following code to display SharePoint data



Google Charts Code

Code for Google Charts can be viewed from here:
https://gist.github.com/Thangeswari/a6e2c17662a59e92bb6315e6ebab1140