Pre loader

Is there a way to make it like the image?

Welcome to the SciChart Forums!

  • Please read our Question Asking Guidelines for how to format a good question
  • Some reputation is required to post answers. Get up-voted to avoid the spam filter!
  • We welcome community answers and upvotes. Every Q&A improves SciChart for everyone

WPF Forums | JavaScript Forums | Android Forums | iOS Forums

1
0

I want to configure the chart as shown in the image.
How should I code to implement the same image in SciChart?

Version
4.4.0.4739
Images
  • You must to post comments
1
0

// We can achieve the output by first giving axis id,
// then moving the desired column axis alignment to different axis/location

    val xAxis = NumericAxis(this)
    xAxis.axisId = "line-xAxis"
    val yAxis = NumericAxis(this)
    yAxis.axisId = "line-yAxis"

    fastLineRenderableSeries = FastLineRenderableSeries()
    fastLineRenderableSeries.xAxisId = "line-xAxis"
    fastLineRenderableSeries.yAxisId = "line-yAxis"

// Move the axis alignment to left and top and then hide these axis.
// Don’t forget to give axis id to renderable series

    val xColumnAxis = NumericAxis(this)
    xColumnAxis.axisId = "column-xAxis"
    xColumnAxis.axisAlignment = AxisAlignment.Left
    xColumnAxis.visibility = View.GONE

    val yColumnAxis = NumericAxis(this)
    yColumnAxis.axisAlignment = AxisAlignment.Top
    yColumnAxis.axisId = "column-yAxis"
    yColumnAxis.visibility = View.GONE

    val fastColumnRenderableSeries = FastColumnRenderableSeries()
    fastColumnRenderableSeries.xAxisId = "column-xAxis"
    fastColumnRenderableSeries.yAxisId = "column-yAxis"
  • You must to post comments
0
0

I don’t want the result to look like the image.

I would like to create a Volume Profile chart in Android like [Option 2 – Using the SubCharts API] method in JavaScript(https://www.scichart.com/blog/how-to-create-a-volume-profile-in-a-javascript-financial-chart). Is there no way?

Images
  • You must to post comments
Showing 2 results
Your Answer

Please first to submit.