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

Stockchart Navigator Height

1 Answer 82 Views
Charts
This is a migrated thread and some comments may be shown as answers.
justin
Top achievements
Rank 1
justin asked on 04 Feb 2014, 03:15 PM
How can I set the height of the Stockchart Navigator?

Here is my current code, however setting height of 30 obviously doesn't work:

        navigator: {
            height:30,
            series: {
                type: "area",
                field: "Sales"
            },
            select: {
                from:pastDate,
                to:currentDateString
            }
        },


Any assistance would be appreciated. Thanks.
Justin

1 Answer, 1 is accepted

Sort by
0
Iliana Dyankova
Telerik team
answered on 05 Feb 2014, 09:43 AM
Hi Justin,

In order to achieve the expected result you should set height to the navigator.pane. I.e.: 
$("#stock-chart").kendoStockChart({
  //....
  navigator: {
    //....
    pane: {
       height: 300
    }
  }
});

Regards,
Iliana Nikolova
Telerik

Check out the new Telerik Platform - the only modular platform that combines a rich set of UI tools with powerful cloud services to develop web, hybrid and native apps. Register for the free online keynote and webinar to learn more about the Platform on Wednesday, February 12, 2014 at 11:00 a.m. ET (8:00 a.m. PT).

Tags
Charts
Asked by
justin
Top achievements
Rank 1
Answers by
Iliana Dyankova
Telerik team
Share this question
or