"Non-shared" axes #218
-
Hi, Currently there is possibility to add many axes to chart but they occupy the same space. Is there any possibility to create axes which divide chart area into independent pieces? Something like below: @beto-rodriguez is it possible to implement something like that with current version? |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments
-
What about creating multiple charts? |
Beta Was this translation helpful? Give feedback.
-
Its all about space. Multiple charts occupy too much space and its quite critical part of my application |
Beta Was this translation helpful? Give feedback.
-
Try reducing the Series = new ISeries[]
{
new StepLineSeries<int>
{
// disable the data padding on the Y axis
// https://github.com/beto-rodriguez/LiveCharts2/blob/master/docs/components/1.8.series.md#datapadding
DataPadding = new LvcPoint(0.5f, 0),
Values = values
}
};
X = new Axis[]
{
new Axis
{
IsVisible = false
}
}; |
Beta Was this translation helpful? Give feedback.
Try reducing the
DataPadding
and making the X axis invisible: