# Chart overrides

This article describes [Overrides API](https://charting-library-docs.xstaging.tv/latest/customization/overrides.md) properties that affect elements on the chart. You can find a full list of properties on the [ChartPropertiesOverrides](https://charting-library-docs.xstaging.tv/latest/api/interfaces/Charting_Library.ChartPropertiesOverrides) page.

All properties are divided into four groups:

- [`paneProperties`](#paneproperties) — affect elements on the main chart pane.
- [`scalesProperties`](#scalesproperties) — affect price and time scales.
- [`mainSeriesProperties`](#mainseriesproperties) — affect series.
- [`tradingProperties`](#trading-platform) — affect Trading Platform features.

## paneProperties

These properties affect elements located on the chart's pane (inside the highlighted area).

![Main pane](/img/overrides-pane.png)

### Chart background color

You can specify a background color using the following properties:

Property | Description |
---------|----------|
[`paneProperties.backgroundType`](../../api/interfaces/Charting_Library.ChartPropertiesOverrides.md#panepropertiesbackgroundtype) | Pane background type. |
[`paneProperties.background`](../../api/interfaces/Charting_Library.ChartPropertiesOverrides.md#panepropertiesbackground) | Pane background color. |
[`paneProperties.backgroundGradientStartColor`](../../api/interfaces/Charting_Library.ChartPropertiesOverrides.md#panepropertiesbackgroundgradientstartcolor) | Pane background gradient start color. |
[`paneProperties.backgroundGradientEndColor`](../../api/interfaces/Charting_Library.ChartPropertiesOverrides.md#panepropertiesbackgroundgradientendcolor) | Pane background gradient end color. |

Background color can be either solid or gradient. Note that the default background type is `gradient` in the **dark theme**. The following code samples demonstrate how to specify background in the dark theme:

```javascript title="Gradient color"
var widget = (window.tvWidget = new TradingView.widget({
    // ...
    theme: "dark",
    overrides: {
        "paneProperties.backgroundGradientStartColor": "#020024",
        "paneProperties.backgroundGradientEndColor": "#4f485e",
    },
}));
```

![Gradient color](/img/gradient-background.png)

```javascript title="Solid color"
var widget = (window.tvWidget = new TradingView.widget({
    // ...
    theme: "dark",
    overrides: {
        "paneProperties.background": "#020024",
        "paneProperties.backgroundType": "solid"
    },
}));
```

![Solid color](/img/solid-color.png)

### Grid lines

You can specify grid lines using the following properties:

Property | Description |
---------|----------|
[`paneProperties.vertGridProperties.color`](../../api/interfaces/Charting_Library.ChartPropertiesOverrides.md#panepropertiesvertgridpropertiescolor) | Pane vertical grid color. |
[`paneProperties.vertGridProperties.style`](../../api/interfaces/Charting_Library.ChartPropertiesOverrides.md#panepropertiesvertgridpropertiesstyle) | Pane vertical grid line style. |
[`paneProperties.horzGridProperties.color`](../../api/interfaces/Charting_Library.ChartPropertiesOverrides.md#panepropertieshorzgridpropertiescolor) | Pane horizontal grid color. |
[`paneProperties.horzGridProperties.style`](../../api/interfaces/Charting_Library.ChartPropertiesOverrides.md#panepropertieshorzgridpropertiesstyle) | Pane horizontal grid line style. |
[`paneProperties.gridLinesMode`](../../api/interfaces/Charting_Library.ChartPropertiesOverrides.md#panepropertiesgridlinesmode) | Pane grid line mode. |

The code sample below specifies a dotted grid line.

```javascript title="Dotted grid line"
var widget = (window.tvWidget = new TradingView.widget({
    // ...
    overrides: {
        "paneProperties.horzGridProperties.style": 1,
    },
}));
```

### Pane separator

You can change the color of the pane separator using the following property (it's also available in Chart settings but you'll have to at least have a pane in addition to main series to see it):

Property | Description |
---------|----------|
[`paneProperties.separatorColor`](../../api/interfaces/Charting_Library.ChartPropertiesOverrides.md#panepropertiesseparatorcolor) | Pane separator color. |

Here's a code sample:

```javascript title="Pane separator color"
var widget = (window.tvWidget = new TradingView.widget({
    // ...
    overrides: {
        "paneProperties.separatorColor": "#9598a1"
    },
}));
```

### Legend

You can specify a legend using the following properties:

Property | Description |
---------|----------|
[`paneProperties.legendProperties.showLastDayChange`](../../api/interfaces/Charting_Library.ChartPropertiesOverrides.md#panepropertieslegendpropertiesshowlastdaychange) | Ability to show daily changes in the chart legend. |
[`paneProperties.legendProperties.showStudyArguments`](../../api/interfaces/Charting_Library.ChartPropertiesOverrides.md#panepropertieslegendpropertiesshowstudyarguments) | Study legend input values visibility. |
[`paneProperties.legendProperties.showStudyTitles`](../../api/interfaces/Charting_Library.ChartPropertiesOverrides.md#panepropertieslegendpropertiesshowstudytitles) | Studies legend title visibility. |
[`paneProperties.legendProperties.showStudyValues`](../../api/interfaces/Charting_Library.ChartPropertiesOverrides.md#panepropertieslegendpropertiesshowstudyvalues) | Studies legend value visibility. |
[`paneProperties.legendProperties.showSeriesTitle`](../../api/interfaces/Charting_Library.ChartPropertiesOverrides.md#panepropertieslegendpropertiesshowseriestitle) | Series legend title visibility. |
[`paneProperties.legendProperties.showSeriesOHLC`](../../api/interfaces/Charting_Library.ChartPropertiesOverrides.md#panepropertieslegendpropertiesshowseriesohlc) | Study legend OHLC values visibility. |
[`paneProperties.legendProperties.showBarChange`](../../api/interfaces/Charting_Library.ChartPropertiesOverrides.md#panepropertieslegendpropertiesshowbarchange) | Series legend change value visibility. |
[`paneProperties.legendProperties.showSeriesLegendCloseOnMobile`](../../api/interfaces/Charting_Library.ChartPropertiesOverrides.md#panepropertieslegendpropertiesshowserieslegendcloseonmobile) | Series legend close value visibility on mobile. |
[`paneProperties.legendProperties.showVolume`](../../api/interfaces/Charting_Library.ChartPropertiesOverrides.md#panepropertieslegendpropertiesshowvolume) | Series legend volume value visibility. |
[`paneProperties.legendProperties.showBackground`](../../api/interfaces/Charting_Library.ChartPropertiesOverrides.md#panepropertieslegendpropertiesshowbackground) | Legend background visibility. |
[`paneProperties.legendProperties.backgroundTransparency`](../../api/interfaces/Charting_Library.ChartPropertiesOverrides.md#panepropertieslegendpropertiesbackgroundtransparency) | Legend background transparency percentage. |

Some properties that relate to the [`mainSeriesProperties`](#mainseriesproperties) group also affect the chart's legend.

Property | Description |
---------|----------|
[`mainSeriesProperties.statusViewStyle.showExchange`](../../api/interfaces/Charting_Library.ChartPropertiesOverrides.md#mainseriespropertiesstatusviewstyleshowexchange) | Main series legend exchange visibility. |
[`mainSeriesProperties.statusViewStyle.showInterval`](../../api/interfaces/Charting_Library.ChartPropertiesOverrides.md#mainseriespropertiesstatusviewstyleshowinterval) | Main series legend interval visibility. |
[`mainSeriesProperties.statusViewStyle.symbolTextSource`](../../api/interfaces/Charting_Library.ChartPropertiesOverrides.md#mainseriespropertiesstatusviewstylesymboltextsource) | Main series legend text style. |

The code sample below removes OHLCV values and chart resolution from the legend. It also specifies the `"long-description"` text style in the legend.

```javascript title="Legend"
var widget = (window.tvWidget = new TradingView.widget({
    // ...
    overrides: {
        "paneProperties.legendProperties.showVolume": false,
        "paneProperties.legendProperties.showSeriesOHLC": false,

        "mainSeriesProperties.statusViewStyle.showInterval": false,
        "mainSeriesProperties.statusViewStyle.symbolTextSource": "long-description",
    },
}));
```

![Overrides legend](/img/overrides-legend.png)

### Margin

Use the following properties to specify a margin applied when users scale the chart:

Property | Description |
---------|----------|
[`paneProperties.topMargin`](../../api/interfaces/Charting_Library.ChartPropertiesOverrides.md#panepropertiestopmargin) | Pane auto scaling top margin percentage. |
[`paneProperties.bottomMargin`](../../api/interfaces/Charting_Library.ChartPropertiesOverrides.md#panepropertiesbottommargin) | Pane auto scaling bottom margin percentage. |

### Crosshair

You can specify a crosshair using the following properties:

Property | Description |
---------|----------|
[`paneProperties.crossHairProperties.color`](../../api/interfaces/Charting_Library.ChartPropertiesOverrides.md#panepropertiescrosshairpropertiescolor) | Crosshair color. |
[`paneProperties.crossHairProperties.style`](../../api/interfaces/Charting_Library.ChartPropertiesOverrides.md#panepropertiescrosshairpropertiesstyle) | Crosshair style. |
[`paneProperties.crossHairProperties.transparency`](../../api/interfaces/Charting_Library.ChartPropertiesOverrides.md#panepropertiescrosshairpropertiestransparency) | Crosshair transparency. To use this property, specify `paneProperties.crossHairProperties.color` with a **hexadecimal** value such as `#ff0000`. Otherwise, transparency is not applied. |
[`paneProperties.crossHairProperties.width`](../../api/interfaces/Charting_Library.ChartPropertiesOverrides.md#panepropertiescrosshairpropertieswidth) | Crosshair width. |

## scalesProperties

These properties affect appearance of the [time] and [price] scales.

### Price scale position

You can use the [`priceScaleSelectionStrategyName`](../../api/interfaces/Charting_Library.ChartPropertiesOverrides.md#pricescaleselectionstrategyname) property to specify a price scale position.
If you want to change the price scale position on the fly, you should use the [`changePriceScale`](../../api/interfaces/Charting_Library.ISeriesApi.md#changepricescale) method.

```javascript
widget.activeChart().getSeries().changePriceScale('new-left');
```

### Scale colors and fonts

You can specify scale colors and fonts using the following properties:

Property | Description |
---------|----------|
[`scalesProperties.lineColor`](../../api/interfaces/Charting_Library.ChartPropertiesOverrides.md#scalespropertieslinecolor) | Scales (axis) border line color. |
[`scalesProperties.textColor`](../../api/interfaces/Charting_Library.ChartPropertiesOverrides.md#scalespropertiestextcolor) | Scales (axis) text color. |
[`scalesProperties.fontSize`](../../api/interfaces/Charting_Library.ChartPropertiesOverrides.md#scalespropertiesfontsize) | Scales (axis) font size. |
[`scalesProperties.axisHighlightColor`](../../api/interfaces/Charting_Library.ChartPropertiesOverrides.md#scalespropertiesaxishighlightcolor) | Sets the highlight color of the scales when adding a drawing. |

### Labels on the scale

Advanced Charts and Trading Platform include labels that allow you to display additional information on the price scale like a symbol name, bid/ask prices, indicators, and more. You can use the properties below to enable these labels:

Property | Description |
---------|----------|
[`scalesProperties.showSeriesLastValue`](../../api/interfaces/Charting_Library.ChartPropertiesOverrides.md#scalespropertiesshowserieslastvalue) | Series last value label visibility. |
[`scalesProperties.showStudyLastValue`](../../api/interfaces/Charting_Library.ChartPropertiesOverrides.md#scalespropertiesshowstudylastvalue) | Study label value label visibility. |
[`scalesProperties.showSymbolLabels`](../../api/interfaces/Charting_Library.ChartPropertiesOverrides.md#scalespropertiesshowsymbollabels) | Symbol name label visibility. |
[`scalesProperties.showStudyPlotLabels`](../../api/interfaces/Charting_Library.ChartPropertiesOverrides.md#scalespropertiesshowstudyplotlabels) | Study plot labels visibility. |
[`scalesProperties.showBidAskLabels`](../../api/interfaces/Charting_Library.ChartPropertiesOverrides.md#scalespropertiesshowbidasklabels) | Bid/ask labels visibility. |
[`scalesProperties.showPrePostMarketPriceLabel`](../../api/interfaces/Charting_Library.ChartPropertiesOverrides.md#scalespropertiesshowprepostmarketpricelabel) | Pre/post market price labels visibility. |
[`mainSeriesProperties.highLowAvgPrice.highLowPriceLabelsVisible`](../../api/interfaces/Charting_Library.ChartPropertiesOverrides.md#mainseriespropertieshighlowavgpricehighlowpricelinesvisible) | High/low price labels visibility. |
[`mainSeriesProperties.highLowAvgPrice.averageClosePriceLabelVisible`](../../api/interfaces/Charting_Library.ChartPropertiesOverrides.md#mainseriespropertieshighlowavgpriceaverageclosepricelabelvisible) | Average close price lines label visibility. |

You can display values focused in the crosshair in labels on the scales. To do this, specify the following properties:

Property | Description |
---------|----------|
[`scalesProperties.showPriceScaleCrosshairLabel`](../../api/interfaces/Charting_Library.ChartPropertiesOverrides.md#scalespropertiesshowpricescalecrosshairlabel) | Price scale crosshair label visibility. |
[`scalesProperties.showTimeScaleCrosshairLabel`](../../api/interfaces/Charting_Library.ChartPropertiesOverrides.md#scalespropertiesshowtimescalecrosshairlabel) | Time scale crosshair label visibility. |
[`scalesProperties.crosshairLabelBgColorLight`](../../api/interfaces/Charting_Library.ChartPropertiesOverrides.md#scalespropertiescrosshairlabelbgcolorlight) | Crosshair label light theme background color. |
[`scalesProperties.crosshairLabelBgColorDark`](../../api/interfaces/Charting_Library.ChartPropertiesOverrides.md#scalespropertiescrosshairlabelbgcolordark) | Crosshair label dark theme background color. |

You can specify label colors and display mode using the properties below:

Property | Description |
---------|----------|
[`mainSeriesProperties.priceAxisProperties.alignLabels`](../../api/interfaces/Charting_Library.ChartPropertiesOverrides.md#mainseriespropertiespriceaxispropertiesalignlabels) | Main series price axis label alignment behavior. |
[`scalesProperties.axisLineToolLabelBackgroundColorActive`](../../api/interfaces/Charting_Library.ChartPropertiesOverrides.md#scalespropertiesaxislinetoollabelbackgroundcoloractive) | Dynamically changes the background color of all labels on the price scale when a drawing is in motion. |
[`scalesProperties.axisLineToolLabelBackgroundColorCommon`](../../api/interfaces/Charting_Library.ChartPropertiesOverrides.md#scalespropertiesaxislinetoollabelbackgroundcolorcommon) | Configures the background color of a label shown on an axis scale when a drawing is selected. |
[`scalesProperties.seriesLastValueMode`](../../api/interfaces/Charting_Library.ChartPropertiesOverrides.md#scalespropertiesserieslastvaluemode) | Series last value label display mode. |

### Price scale mode

You can specify a price scale mode using the following properties:

Property | Description |
---------|----------|
[`mainSeriesProperties.priceAxisProperties.percentage`](../../api/interfaces/Charting_Library.ChartPropertiesOverrides.md#mainseriespropertiespriceaxispropertiespercentage) | Main series price axis percentage mode. |
[`mainSeriesProperties.priceAxisProperties.indexedTo100`](../../api/interfaces/Charting_Library.ChartPropertiesOverrides.md#mainseriespropertiespriceaxispropertiesindexedto100) | Main series price axis indexed to 100 mode. |
[`mainSeriesProperties.priceAxisProperties.log`](../../api/interfaces/Charting_Library.ChartPropertiesOverrides.md#mainseriespropertiespriceaxispropertieslog) | Main series price axis log mode. |
[`mainSeriesProperties.priceAxisProperties.isInverted`](../../api/interfaces/Charting_Library.ChartPropertiesOverrides.md#mainseriespropertiespriceaxispropertiesisinverted) | Main series price axis inverted mode. |

Note that you cannot change the price scale mode using the [`applyOverrides`](../../api/interfaces/Charting_Library.IChartingLibraryWidget.md#applyoverrides) method. If you want to change the mode on the fly, you should use the [Price Scale API](https://charting-library-docs.xstaging.tv/latest/api/interfaces/Charting_Library.IPriceScaleApi). Consider the code sample below that enables [Logarithmic mode](https://charting-library-docs.xstaging.tv/latest/api/enums/Charting_Library.PriceScaleMode#log):

```javascript
const priceScale = widget.activeChart().getPanes()[0].getRightPriceScales()[0];
priceScale.setMode(1);
```

## mainSeriesProperties

These properties affect the main series and UI elements related to its values. A series is a collection of data points that represents a specific metric over time.

### Series visibility

If you want to hide the main series, set the [`mainSeriesProperties.visible`](../../api/interfaces/Charting_Library.ChartPropertiesOverrides.md#mainseriespropertiesvisible) property to `false`.
You can also use the [`setVisible`](../../api/interfaces/Charting_Library.ISeriesApi.md#setvisible) method to change the visibility of the series on the fly.

```javascript
widget.activeChart().getSeries().setVisible(true);
```

To check if the series is currently visible or not, use the [`isVisible`](../../api/interfaces/Charting_Library.ISeriesApi.md#isvisible) method:

```javascript
widget.activeChart().getSeries().isVisible();
```

### Chart styles

Advanced Charts and Trading Platform support multiple [chart styles](https://charting-library-docs.xstaging.tv/latest/api/enums/Charting_Library.ChartStyle) including Bars, Candles, Line, Area, and more.
You can specify the style using the [`mainSeriesProperties.style`](../../api/interfaces/Charting_Library.ChartPropertiesOverrides.md#mainseriespropertiesstyle) property.

For each style, there is a group of properties that you can specify to adjust the main series. Properties of one group have the same name pattern. You can use these patterns to find properties for a certain style on the [ChartPropertiesOverrides](https://charting-library-docs.xstaging.tv/latest/api/interfaces/Charting_Library.ChartPropertiesOverrides) page. The table below contains styles and the corresponding patterns.

Style | Name patterns |
---------|----------|
Line | `mainSeriesProperties.lineStyle` |
Baseline | `mainSeriesProperties.baselineStyle` |
Stepline | `mainSeriesProperties.steplineStyle` |
Bars | `mainSeriesProperties.barStyle` |
Candles | `mainSeriesProperties.candleStyle` |
Volume candles | `mainSeriesProperties.volCandlesStyle` |
Area | `mainSeriesProperties.areaStyle` |
HLC Area | `mainSeriesProperties.hlcAreaStyle` |
HLC bars | `mainSeriesProperties.hlcBarsStyle` |
Line With Markers | `mainSeriesProperties.lineWithMarkersStyle` |
Hollow Candles | `mainSeriesProperties.hollowCandleStyle` |
Heikin Ashi  | `mainSeriesProperties.haStyle` |
Columns | `mainSeriesProperties.columnStyle` |
High-low | `mainSeriesProperties.hiloStyle` |
Renko | `mainSeriesProperties.renkoStyle` |
Line Break | `mainSeriesProperties.pbStyle` |
Kagi  | `mainSeriesProperties.kagiStyle` |
Point-and-Figure | `mainSeriesProperties.pnfStyle` |

You can also change the chart style properties on the fly. To do this, use the [`setChartStyleProperties`](../../api/interfaces/Charting_Library.ISeriesApi.md#setchartstyleproperties) method.
For example, the code sample changes the [properties](https://charting-library-docs.xstaging.tv/latest/api/interfaces/Charting_Library.CandleStylePreferences) of the Candles style.

```javascript
widget.chart().getSeries().setChartStyleProperties(1, {
    upColor: '#10F9E0',
    downColor: '#1029F9',
    borderUpColor: '#10F9E0',
    borderDownColor: '#1029F9'
});
```

![Change Candle style on the fly](/img/candle-style.png)

Properties that can be changed using `setChartStyleProperties` are listed in interfaces like [`BarStylePreferences`](../../api/interfaces/Charting_Library.BarStylePreferences.md), [`RenkoStylePreferences`](../../api/interfaces/Charting_Library.RenkoStylePreferences.md), and [`AreaStylePreferences`](../../api/interfaces/Charting_Library.AreaStylePreferences.md).
Refer to the [SeriesPreferencesMap](https://charting-library-docs.xstaging.tv/latest/api/interfaces/Charting_Library.SeriesPreferencesMap) page to see the list of such interfaces.

### Session

Advanced Charts and Trading Platform support pre-market and post-market sessions. To enable them, you should set the [`mainSeriesProperties.sessionId`](../../api/interfaces/Charting_Library.ChartPropertiesOverrides.md#mainseriespropertiessessionid) to `"extended"`. For more information about the sessions, refer to [Trading Sessions](https://charting-library-docs.xstaging.tv/latest/connecting_data/time-and-sessions/Trading-Sessions.md) and [Extended Sessions](https://charting-library-docs.xstaging.tv/latest/connecting_data/time-and-sessions/Extended-Sessions.md).

### Countdown

On the price scale, you can display a countdown to the bar close. To do this, set the [`mainSeriesProperties.showCountdown`](../../api/interfaces/Charting_Library.ChartPropertiesOverrides.md#mainseriespropertiesshowcountdown) property to `true`.
Note that you should also implement the [`getServerTime`](../../connecting_data/datafeed-api/additional-methods.md#getservertime) method to display the countdown.

### Price line

You can specify a price line using the following properties:

Property | Description |
---------|----------|
[`mainSeriesProperties.showPriceLine`](../../api/interfaces/Charting_Library.ChartPropertiesOverrides.md#mainseriespropertiesshowpriceline) | Main series price line visibility. |
[`mainSeriesProperties.priceLineWidth`](../../api/interfaces/Charting_Library.ChartPropertiesOverrides.md#mainseriespropertiespricelinewidth) | Main series price line width. |
[`mainSeriesProperties.priceLineColor`](../../api/interfaces/Charting_Library.ChartPropertiesOverrides.md#mainseriespropertiespricelinecolor) | Main series price line color. |

### Additional lines

Advanced Charts and Trading Platform include additional lines that can be displayed on the chart. You can enable them using the toggle properties in the table below. For each line, there is a group of properties that you can specify to adjust this line. Properties of one group have the same name pattern. You can use these patterns to find properties for a certain line on the [ChartPropertiesOverrides](https://charting-library-docs.xstaging.tv/latest/api/interfaces/Charting_Library.ChartPropertiesOverrides) page.

Line | Toggle | Name patterns |
---------|----------| ----------|
Bid/ask | [`mainSeriesProperties.bidAsk.visible`](../../api/interfaces/Charting_Library.ChartPropertiesOverrides.md#mainseriespropertiesbidaskvisible) |`mainSeriesProperties.bidAsk` |
High/low price | [`highLowAvgPrice.highLowPriceLinesVisible`](../../api/interfaces/Charting_Library.ChartPropertiesOverrides.md#mainseriespropertieshighlowavgpricehighlowpricelinesvisible) | `mainSeriesProperties.highLowAvgPrice` |
Previous close price | [`mainSeriesProperties.showPrevClosePriceLine`](../../api/interfaces/Charting_Library.ChartPropertiesOverrides.md#mainseriespropertiesshowprevclosepriceline) |`mainSeriesProperties.prevClosePrice` |

### minTick

The [`minTick`](../../api/interfaces/Charting_Library.ChartPropertiesOverrides.md#mainseriespropertiesmintick) property allows you to change the [`pricescale`](../../api/interfaces/Charting_Library.LibrarySymbolInfo.md#pricescale), [`minmov`](../../api/interfaces/Charting_Library.LibrarySymbolInfo#minmov), and [`fractional`](../../api/interfaces/Charting_Library.LibrarySymbolInfo#fractional) properties for the current symbol at once. For more information about these properties, refer to [Price Format](https://charting-library-docs.xstaging.tv/latest/connecting_data/Symbology.md#price-format).
All `minTick` possible values are represented below as objects for better readability:

```text
{ priceScale: 1, minMove: 1, frac: false },
{ priceScale: 10, minMove: 1, frac: false },
{ priceScale: 100, minMove: 1, frac: false },
{ priceScale: 1000, minMove: 1, frac: false },
{ priceScale: 10000, minMove: 1, frac: false },
{ priceScale: 100000, minMove: 1, frac: false },
{ priceScale: 1000000, minMove: 1, frac: false },
{ priceScale: 10000000, minMove: 1, frac: false },
{ priceScale: 100000000, minMove: 1, frac: false },
{ priceScale: 2, minMove: 1, frac: true },
{ priceScale: 4, minMove: 1, frac: true },
{ priceScale: 8, minMove: 1, frac: true },
{ priceScale: 16, minMove: 1, frac: true },
{ priceScale: 32, minMove: 1, frac: true },
{ priceScale: 64, minMove: 1, frac: true },
{ priceScale: 128, minMove: 1, frac: true },
{ priceScale: 320, minMove: 1, frac: true },
```

If you want to reset the `pricescale`, `minmov`, and `fractional` properties to their values initialized in [`LibrarySymbolInfo`](../../api/interfaces/Charting_Library.LibrarySymbolInfo.md), set `minTick` to `"default"`.

Specify the [`mainSeriesProperties.minTick`](../../api/interfaces/Charting_Library.ChartPropertiesOverrides.md#mainseriespropertiesmintick) property as demonstrated below:

```javascript
// Set minTick to "default"
tvWidget.applyOverrides({ "mainSeriesProperties.minTick": "default" });

// Set series' minTick to { priceScale: 10000, minMove: 1, frac: false }
tvWidget.applyOverrides({ "mainSeriesProperties.minTick": "10000,1,false" });

// Set minTick for overlay studies to { priceScale: 10000, minMove: 1, frac: false }
tvWidget.applyStudiesOverrides({ "overlay.minTick": "10000,1,false" });
```

## Time zone

If you want to change a time zone that is set in [Widget Constructor](https://charting-library-docs.xstaging.tv/latest/configuration/Widget-Constructor.md), you should use the [`timezone`](../../api/interfaces/Charting_Library.ChartPropertiesOverrides.md#timezone) property.

```javascript
tvWidget.applyOverrides({ "timezone": "Europe/Belgrade"});
```

## Trading Platform

You can use `tradingProperties` to customize Trading Platform features such as orders and positions.
Refer to the [Trading overrides](https://charting-library-docs.xstaging.tv/latest/customization/overrides/trading-overrides.md#adjust-display-of-trading-features) for more information.

[price]: https://charting-library-docs.xstaging.tv/latest/ui_elements/Price-Scale.md
[time]: https://charting-library-docs.xstaging.tv/latest/ui_elements/Time-Scale.md

---

## Sitemap

- [All documentation pages](https://charting-library-docs.xstaging.tv/llms.txt)
- [Full page map with headings](https://charting-library-docs.xstaging.tv/docs_map.md)
