Skip to main content

Chart Features

Use enabled_features and disabled_features to control which parts of the chart UI are visible.

How It Works

  • enabled_features turns on the features you list
  • disabled_features turns off the features you list
  • if you provide only disabled features, the rest stay available
  • if you provide enabled features, the chart treats it as a focused feature set

Common Feature Keys

Feature keyWhat it controls
searchSymbol search in the chart UI.
intervalTimeframe selector.
chart_typeChart style selector.
compareCompare overlay tools.
indicatorIndicator controls.
alertAlert controls.
replayReplay mode controls.
undo_redoUndo and redo controls.
layoutLayout controls.
multi_layoutMulti-layout support.
settingsSettings controls.
themeTheme switching.
keyboard_shortcutsKeyboard shortcut help.
exportExport and screenshot actions.
fullscreenFull screen controls.
timezone_selectorTimezone selector.
range_selectorRange selector.
preset_selectorPreset selector.
watchlistWatchlist panel.
data_windowData window panel.
alert_managerAlert manager panel.
depthDepth panel.
newsNews panel.
calendarCalendar panel.
notificationsNotifications panel.
indicator_builderIndicator builder panel.
open_scriptOpen script panel.
one_click_tradeOne-click trading.
display_sidebarsSidebar visibility as a whole.

Example

const chart = new Chart({
container,
datafeed,
enabled_features: ["search", "compare", "indicator", "export"],
disabled_features: ["news", "calendar"],
});