Axis
Use the XML attributes to create HorizontalAxis
and VerticalAxis
instances:
<style name="ChartStyle">
<item name="showStartAxis">true</item>
<item name="showTopAxis">true</item>
<item name="showEndAxis">true</item>
<item name="showBottomAxis">true</item>
</style>
<com.patrykandpatrick.vico.views.cartesian.CartesianChartView
app:chartStyle="@style/ChartStyle"
<!-- ... --> />
Alternatively, use VerticalAxis.start
,
HorizontalAxis.top
,
VerticalAxis.end
, and
HorizontalAxis.bottom
:
cartesianChartView.chart =
CartesianChart(
startAxis = VerticalAxis.start(/* ... */),
topAxis = HorizontalAxis.top(/* ... */),
endAxis = VerticalAxis.end(/* ... */),
bottomAxis = HorizontalAxis.bottom(/* ... */),
// ...
)