I am trying to render a partial view, I am getting no errors or issues other than the graph just no displaying.
Main View
@{Html.RenderPartial("~/Views/Shared/Charts/LineChart.cshtml", Model);}
Partial View
@model IEnumerable<VW_NewVulnerabilities>
<div class="chart">
<canvas id="lineChart" style="height:250px"></canvas>
</div>
@section scripts {plenty of js in here }
All of this worked when it was in one view. Essentially i am trying to create a dynamic chartjs line chart so i can pass it a list of information and i can reuse it.