I am looking at using Google Charts to have scatter plot. All of the examples have external dependency, and I would like to avoid that as this is an intranet application that doesn't have external Internet access.
<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);
...
</script>
Can I simply just copy loader.js locally or is there something more complicated that I need to worry about here? The reason I ask is that I tried doing that and it's not working so I am trying to figure out if what I am doing is fundamentally flawed or I might have an unrelated issue.
DatePicker
offiline,I had to check in the .css file because the file has relatives URL's to images, I say this because you can check the downloaded files (js, css, etc) and check if those has other (online) references. Also, I suggest you make this test: run your example and check the navigation and console tabs (F12 developer tool) and check if there are lost requests and or errors. Hope it helps. – Bent