You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm using range chart in recyclerView, But some time it is showing white space and some time it is working fine. Can you guide me how can properly load the chart in recyclerview every time?
//initialize this one time in view holder
anyChartView = root.findViewById(R.id.any_chart_view);
linearGauge = AnyChart.linear();
I'm using range chart in recyclerView, But some time it is showing white space and some time it is working fine. Can you guide me how can properly load the chart in recyclerview every time?
//initialize this one time in view holder
anyChartView = root.findViewById(R.id.any_chart_view);
linearGauge = AnyChart.linear();
//assign values in onBindViewHolder function
holder.linearGauge.data(new SingleValueDataSet(new Double[]{data}));
holder.linearGauge.layout(Layout.HORIZONTAL);
The text was updated successfully, but these errors were encountered: