While trying to render a simple Bullet Graph on a local IIS server the graph refuses to render, it displays fine in the Visual Studio Designer but in the browser the graph is no where to be found. Script Manager is running and all other code right now is at a minimum
<%@ Register TagPrefix="ej" Namespace="Syncfusion.JavaScript.Web" Assembly="Syncfusion.EJ.Web, Version=12.2451.0.36, Culture=neutral, PublicKeyToken=3d67ed1f87d44c89" %>
<%@ Register TagPrefix="dv" Namespace="Syncfusion.JavaScript.DataVisualization.Models" Assembly="Syncfusion.EJ, Version=12.2451.0.36, Culture=neutral, PublicKeyToken=3d67ed1f87d44c89" %>
<ej:BulletGraph ID="BulletGraph1" runat="server" Visible="True" Height="100px" Width="525px" >
<QuantitativeScaleSettings Interval="10" Maximum="100" />
<QualitativeRanges>
<dv:QualitativeRanges RangeEnd="80" RangeStroke="#d61e3f"/>
<dv:QualitativeRanges RangeEnd="90" RangeStroke="#fcda21"/>
<dv:QualitativeRanges RangeEnd="100" RangeStroke="#61a301"/>
</QualitativeRanges>
</ej:BulletGraph>