Propagate time format options to table graphs
parent
d1635a45c5
commit
9715a433f7
|
@ -1,7 +1,5 @@
|
||||||
import React, {Component} from 'react'
|
import React, {Component} from 'react'
|
||||||
import PropTypes from 'prop-types'
|
import PropTypes from 'prop-types'
|
||||||
import moment from 'moment'
|
|
||||||
import classnames from 'classnames'
|
|
||||||
|
|
||||||
import InputClickToEdit from 'shared/components/InputClickToEdit'
|
import InputClickToEdit from 'shared/components/InputClickToEdit'
|
||||||
import {Dropdown} from 'src/shared/components/Dropdown'
|
import {Dropdown} from 'src/shared/components/Dropdown'
|
||||||
|
|
|
@ -40,7 +40,7 @@ const Layout = (
|
||||||
{
|
{
|
||||||
host,
|
host,
|
||||||
cell,
|
cell,
|
||||||
cell: {h, axes, type, colors, legend},
|
cell: {h, axes, type, colors, legend, options},
|
||||||
source,
|
source,
|
||||||
sources,
|
sources,
|
||||||
onZoom,
|
onZoom,
|
||||||
|
@ -77,6 +77,7 @@ const Layout = (
|
||||||
inView={cell.inView}
|
inView={cell.inView}
|
||||||
axes={axes}
|
axes={axes}
|
||||||
type={type}
|
type={type}
|
||||||
|
options={options}
|
||||||
staticLegend={IS_STATIC_LEGEND(legend)}
|
staticLegend={IS_STATIC_LEGEND(legend)}
|
||||||
cellHeight={h}
|
cellHeight={h}
|
||||||
onZoom={onZoom}
|
onZoom={onZoom}
|
||||||
|
|
Loading…
Reference in New Issue