#aleksandr_37787

1 messages · Page 1 of 1 (latest)

cloud tigerBOT
zinc junco
#

How it looks like in ContextView:

#

How it looks like in FocusView:

strong aurora
#

Can you share the full code you have in your <FocusView />?

zinc junco
#
<FocusView
  title={insight.subject}
  shown={true}
>
  <LineChart
    axis="y"
    data={insight.graph}
    x={{ value: 'x_axis_value', label: 'x-label' }}
    y={{ value: 'y_axis_value', label: 'y-label' }}
  />
</FocusView>
strong aurora
#

And what about if you wrap it in a <Box>:

<Box css={{ layout: 'column', width: 'fill' }}>
  ...
</Box>
zinc junco
#

the same as on the image above

#

(horizonal scroll appears and part of graph is hidden)

strong aurora