Hello,
I'm currently developing a new application with DNN 7.2, which requires some charting functionality, I have managed to get .Net Framework 3.5 charts working but they are quite basic. I was really hoping to use the Framework 4 charts which are much more visually appealing, but in DNN the charts just do not render.
Has anyone managed to get them to work if not does anyone know when a release of DNN maybe released that supports it.
A breakdown of my current config with the charting elements is:
<appSettings>
<add key="ChartImageHandler"
value="Storage=file;Timeout=20;Url=~/tempImages/;"/>
</appSettings>
<connectionStrings/>
<system.web>
<httpHandlers>
<add path="ChartImg.axd"
verb="GET,HEAD,POST"
type="System.Web.UI.DataVisualization.Charting.ChartHttpHandler,
System.Web.DataVisualization, Version=4.0.0.0, Culture=neutral,
PublicKeyToken=31bf3856ad364e35" validate="false"/>
</httpHandlers>
<pages>
<controls>
<add tagPrefix="asp"
namespace="System.Web.UI.DataVisualization.Charting"
assembly="System.Web.DataVisualization, Version=4.0.0.0, Culture=neutral,
PublicKeyToken=31bf3856ad364e35"/>
</controls>
</pages>
<compilation debug="true"
targetFramework="4.0">
<assemblies>
<add assembly="System.Web.DataVisualization,
Version=4.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/>
</assemblies>
</compilation>
<authentication mode="Windows"/>
</system.web>
<system.webServer>
<validation
validateIntegratedModeConfiguration="false"/>
<handlers>
<remove name="ChartImageHandler"/>
<add name="ChartImageHandler"
preCondition="integratedMode" verb="GET,HEAD,POST"
path="ChartImg.axd" type="System.Web.UI.DataVisualization.Charting.ChartHttpHandler,
System.Web.DataVisualization, Version=4.0.0.0, Culture=neutral,
PublicKeyToken=31bf3856ad364e35"/>
</handlers>
</system.webServer>
Thanks for your help
Ben