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

Stock chart Navigator component's labels/readings are overlapping with each other.

1 Answer 97 Views
Charts
This is a migrated thread and some comments may be shown as answers.
Rocky
Top achievements
Rank 1
Rocky asked on 31 Oct 2013, 10:40 AM
Hi,

Stock chart Navigator component's labels/readings are overlapping with each other as highlighted in the attached screen shot. Please help us in resolving this issue.

 

1 Answer, 1 is accepted

Sort by
0
Iliana Dyankova
Telerik team
answered on 31 Oct 2013, 05:10 PM
Hi Rocky,

I already answered to the same question in your other thread, however I am pasting my reply here too:

In order to prevent labels overlapping you could use one of the following approaches:

  • Rotate the labels: 
    Copy Code
    $("#stock-chart").kendoStockChart({
      //....
      navigator: {
        //....
        categoryAxis:
           labels: {
             rotation: 270
           }
        }
      }
    });
  • Use the step property and skip displaying some of the labels:
    Copy Code
    $("#stock-chart").kendoStockChart({
      //....
      navigator: {
        //....
        categoryAxis:
           labels: {
             step: 4
           }
        }
      }
    });
  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
Rocky
Top achievements
Rank 1
Answers by
Iliana Dyankova
Telerik team
Share this question
or