This is a migrated thread and some comments may be shown as answers.

3d effect on charts

1 Answer 227 Views
Charts
This is a migrated thread and some comments may be shown as answers.
tanq
Top achievements
Rank 1
tanq asked on 13 Nov 2014, 10:41 AM
Hi i want to ask you how i can remove 3d effect from charts, and how i can to change the lines to be dot, not a solid.
Thank you,
Tanq

1 Answer, 1 is accepted

Sort by
0
Iliana Dyankova
Telerik team
answered on 17 Nov 2014, 08:13 AM
Hi Tanq,

Up to the requirements
- ...how i can remove 3d effect from charts...
For this requirement you can set the series.overlay.gradient option to false
$("#chart").kendoChart({
  //....
  series: [ {
    //....
    overlay: {
      gradient: "none"
    }
  }]
});
-... how i can to change the lines to be dot...
There is series.dashType option which can be used for this requirement: 
$("#chart").kendoChart({
  series: [{
      dashType: "dot",
      type: "line",
  }]
});

Regards,
Iliana Nikolova
Telerik
 
Join us on our journey to create the world's most complete HTML 5 UI Framework - download Kendo UI now!
 
Tags
Charts
Asked by
tanq
Top achievements
Rank 1
Answers by
Iliana Dyankova
Telerik team
Share this question
or