I have encountered an issue after transferring my D3js chart generation system from a development server with no problems to a live Windows 2008 r2 server. On the live server, only the background SVG element is displayed and none of the other elements like axis and data bars are showing.
Important Notes: JavaScript is enabled on the client side, and the dataset values used in the example are just placeholders, as the actual values are fetched from a json.data file.
If you have experienced a similar problem or have any suggestions, please check out this Plunker example where you can view the files and code.
Here's the sample code snippet:
<script>
// Code for creating D3js chart goes here
</script>
The JSON data used for populating the chart:
[
{
"key": "category_1",
"value": "5.00"
},
{
"key": "category_2",
"value": "2.00"
},
...
]