I'm trying to remove the little circles/symbols that are on the DataViz line graph. I currently modified the CSS so they don't get displayed in most of the browsers. Unfortunately the CSS hack didn't work when running the program on an Android phone. I saw in the API documentation (also: https://github.com/telerik/kendo-docs/blob/master/api/dataviz/sparkline.md#categoryaxisnoteslabelvisible-boolean-default-true) that said you could change this Note value to false, but I've been unable to do so. I believe the boolean attribute is: categoryAxis.notes.label.visible.
I'm using ASP.NET MVC so I'm unable to follow most of the sample code and examples b/c they are all in JavaScript (where examples are abundant). I've pasted part of the code that I'm using for one of my charts. I've tried adding ".Note ..." under ".categoryAxis", but it won't compile... I've tried several different methods for this attribute:
.CategoryAxis(axis => axis
.Categories(@Model.Label)
.MajorGridLines(lines => lines.Visible(false))
.Labels(labels => labels.Rotation(-45).Format("{0}").Skip(0).Step(2))
.Notes(n => n.Notes).Visible(false)
)
Any ideas on how to resolve this? Thanks in advance!
I'm using ASP.NET MVC so I'm unable to follow most of the sample code and examples b/c they are all in JavaScript (where examples are abundant). I've pasted part of the code that I'm using for one of my charts. I've tried adding ".Note ..." under ".categoryAxis", but it won't compile... I've tried several different methods for this attribute:
.CategoryAxis(axis => axis
.Categories(@Model.Label)
.MajorGridLines(lines => lines.Visible(false))
.Labels(labels => labels.Rotation(-45).Format("{0}").Skip(0).Step(2))
.Notes(n => n.Notes).Visible(false)
)
Any ideas on how to resolve this? Thanks in advance!