Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

devextreme

Package Overview
Dependencies
Maintainers
9
Versions
843
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

devextreme

HTML5 JavaScript Component Suite for Responsive Web Development

  • 24.1.7
  • latest
  • 24.1-stable
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
236K
increased by5.85%
Maintainers
9
Weekly downloads
 
Created

What is devextreme?

DevExtreme is a comprehensive suite of high-performance HTML5 and JavaScript components for responsive web development. It includes a variety of UI widgets, data visualization tools, and utilities for building modern web applications.

What are devextreme's main functionalities?

Data Grid

The Data Grid is a powerful component for displaying and editing tabular data. It supports features like sorting, filtering, grouping, and editing.

const { DataGrid } = require('devextreme-react/data-grid');

const dataSource = [
  { id: 1, name: 'John', age: 30 },
  { id: 2, name: 'Jane', age: 25 }
];

<DataGrid
  dataSource={dataSource}
  columns={['id', 'name', 'age']}
/>;

Chart

The Chart component allows you to create a wide variety of charts, including bar, line, area, and pie charts. It supports features like tooltips, legends, and animations.

const { Chart, Series } = require('devextreme-react/chart');

const dataSource = [
  { year: 2010, value: 10 },
  { year: 2011, value: 20 }
];

<Chart dataSource={dataSource}>
  <Series
    valueField="value"
    argumentField="year"
    type="bar"
  />
</Chart>;

Scheduler

The Scheduler component is used for displaying and managing appointments. It supports multiple views (day, week, month), drag-and-drop, and editing capabilities.

const { Scheduler } = require('devextreme-react/scheduler');

const appointments = [
  { text: 'Meeting', startDate: new Date(2023, 4, 23, 9, 0), endDate: new Date(2023, 4, 23, 10, 0) }
];

<Scheduler
  dataSource={appointments}
  views={['day', 'week', 'month']}
  defaultCurrentView="week"
  defaultCurrentDate={new Date(2023, 4, 23)}
/>;

Other packages similar to devextreme

Keywords

FAQs

Package last updated on 01 Nov 2024

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc