Reports
This commit is contained in:
parent
23adcf4d46
commit
0c55801572
|
|
@ -455,12 +455,15 @@ class ReportCharts extends StatelessWidget {
|
|||
renderSpec: charts.GridlineRendererSpec(
|
||||
lineStyle:
|
||||
charts.LineStyleSpec(color: charts.MaterialPalette.transparent),
|
||||
labelStyle: charts.TextStyleSpec(fontSize: 10, color: color)));
|
||||
labelStyle: charts.TextStyleSpec(fontSize: 10, color: color),
|
||||
labelRotation: 45,
|
||||
));
|
||||
|
||||
final dateTimeAxis = charts.DateTimeAxisSpec(
|
||||
renderSpec: charts.SmallTickRendererSpec(
|
||||
labelStyle: charts.TextStyleSpec(color: color),
|
||||
lineStyle: charts.LineStyleSpec(color: color)));
|
||||
lineStyle: charts.LineStyleSpec(color: color),
|
||||
));
|
||||
|
||||
Widget child;
|
||||
switch (getReportColumnType(reportState.group, context)) {
|
||||
|
|
|
|||
|
|
@ -218,7 +218,7 @@ class ReportsScreenVM {
|
|||
.rebuild((b) => b..userCompany.settings.replace(settings));
|
||||
final completer = snackBarCompleter<Null>(
|
||||
context, AppLocalization.of(context).savedSettings);
|
||||
if (state.authState.hasRecentlyEnteredPassword && false) {
|
||||
if (state.authState.hasRecentlyEnteredPassword) {
|
||||
store.dispatch(
|
||||
SaveUserSettingsRequest(
|
||||
completer: completer,
|
||||
|
|
|
|||
Loading…
Reference in New Issue