Created
January 21, 2015 22:48
-
-
Save mjeaton/4402c8b0224e609abc90 to your computer and use it in GitHub Desktop.
Kendo question
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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