Skip to content

Instantly share code, notes, and snippets.

@mjeaton
Created January 21, 2015 22:48
Show Gist options
  • Save mjeaton/4402c8b0224e609abc90 to your computer and use it in GitHub Desktop.
Save mjeaton/4402c8b0224e609abc90 to your computer and use it in GitHub Desktop.
Kendo question
This:
@(Html.Kendo().Chart()
.Name("chart")
.Title("Site Visitors Stats \n /thousands/")
)
Renders this:
<div id="chart">
</div>
<div class="k-chart" id="chart"></div><script>
jQuery(function(){jQuery("#chart").kendoChart({"title":{"text":"Site Visitors Stats \n /thousands/"}});});
</script>
But I see nothing on the screen. Shouldn't I see *something*?
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment