I am trying to have it so when I click on a pie graph piece it will link to a controller, however the controller I am linking it to contains different parameters. I am utilizing javascript due to it being dynamic data. It works up until I try to get the value of the chart element.
Javascript:
function OnClickDPAFilterComplete(e) {
window.open(‘@Url.Action(“Index”, “Dashboard”, new { id = ViewBag.id, type = e.dataPoint.label, DPAStatus = “Complete” })’);
}
Any ideas?