Lightweight in EJ2 TypeScript Range navigator control

8 May 20232 minutes to read

By default, when the dataSource for series is empty, a lightweight Range Selector will be shown without Chart.

import { RangeNavigator, DateTime } from '@syncfusion/ej2-charts';
import { GetDateTimeData } from './datasource.ts';
RangeNavigator.Inject(DateTime);

let range: RangeNavigator = new RangeNavigator(
    {
        valueType: 'DateTime',
        intervalType: 'Months',
        labelFormat: 'MMM',
        value: [new Date(2018, 4, 1), new Date(2018, 8, 1)],
        dataSource: GetDateTimeData(new Date(2018, 0, 1), new Date(2019, 0, 1)),
        xName: 'x', yName: 'y'
    }, '#element');
<!DOCTYPE html>
<html lang="en">

<head>
    <title>EJ2 Animation</title>
    <meta charset="utf-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <meta name="description" content="Typescript UI Controls" />
    <meta name="author" content="Syncfusion" />
    <link href="index.css" rel="stylesheet" />
    <script src="https://cdnjs.cloudflare.com/ajax/libs/systemjs/0.19.38/system.js"></script>
    <script src="systemjs.config.js"></script>
<script src="https://cdn.syncfusion.com/ej2/syncfusion-helper.js" type ="text/javascript"></script>
</head>

<body>
    <div id='loader'>Loading....</div>
    <div id='container' style="margin-top: 125px">
        <div id='element'></div>
    </div>
</body>

</html>

See Also