sf cartesian chart not visible for apk released using flutter #2255
Labels
charts
Charts component
waiting for customer response
Cannot make further progress until the customer responds.
Bug description
I cant see the graph when i install apk released using flutter. my version for sf cartesian chart is syncfusion_flutter_charts: ^28.1.38. kindly go through the issue as i can see the graph when it is released as web build.
Steps to reproduce
SizedBox(
height: _chartData.length * 30.0,
child: SfCartesianChart(
primaryXAxis: CategoryAxis(),
primaryYAxis: NumericAxis(
labelIntersectAction:
AxisLabelIntersectAction.multipleRows,
labelFormat: '{value}'),
tooltipBehavior: TooltipBehavior(enable: true),
series: [
if (_showOpen)
StackedBarSeries<ChartData, String>(
dataSource: _chartData,
xValueMapper: (ChartData data, _) => data.date,
yValueMapper: (ChartData data, _) => data.open,
name: 'Opened',
color: Colors.blue,
),
if (_showReopened)
StackedBarSeries<ChartData, String>(
dataSource: _chartData,
xValueMapper: (ChartData data, _) => data.date,
yValueMapper: (ChartData data, _) => data.reopened,
name: 'Reopened',
color: Colors.orange,
),
if (_showClosed)
StackedBarSeries<ChartData, String>(
dataSource: _chartData,
xValueMapper: (ChartData data, _) => data.date,
yValueMapper: (ChartData data, _) => data.closed,
name: 'Closed',
color: Colors.green,
),
if (_showDeclined)
StackedBarSeries<ChartData, String>(
dataSource: _chartData,
xValueMapper: (ChartData data, _) => data.date,
yValueMapper: (ChartData data, _) => data.declined,
name: 'Declined',
color: Colors.red,
),
],
),
),
Code sample
Code sample
[Add your code here]
Screenshots or Video
Screenshots / Video demonstration
[Upload media here]
Stack Traces
Stack Traces
On which target platforms have you observed this bug?
Android
Flutter Doctor output
Doctor output
The text was updated successfully, but these errors were encountered: