Search results

Lightweight in JavaScript Range Navigator control

06 Jun 2023 / 1 minute to read

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

Source
Preview
index.ts
index.html
Copied to clipboard
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');
Copied to clipboard
<!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>
</head>

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

</html>

See Also