Add 30 n
This commit is contained in:
parent
a5d93f8fad
commit
f2cad9ec1a
@ -680,7 +680,37 @@ export default function MembersOverviewChart()
|
|||||||
{t('thisYear')}
|
{t('thisYear')}
|
||||||
</button>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
<ReactApexChart series={options.series} options={options.options} type="area" height={350} width={'100%'} />
|
{!chartSeries || chartSeries.length === 0 ? (
|
||||||
|
<div className="flex items-center justify-center h-[350px]">
|
||||||
|
<div className="animate-spin rounded-full h-12 w-12 border-t-2 border-b-2 border-gray-900 dark:border-gray-100"></div>
|
||||||
|
</div>
|
||||||
|
) : (
|
||||||
|
<ReactApexChart
|
||||||
|
series={options.series}
|
||||||
|
options={{
|
||||||
|
...options.options,
|
||||||
|
xaxis: {
|
||||||
|
...options.options.xaxis,
|
||||||
|
categories: labels,
|
||||||
|
},
|
||||||
|
noData: {
|
||||||
|
text: t('noDataAvailable'),
|
||||||
|
align: 'center',
|
||||||
|
verticalAlign: 'middle',
|
||||||
|
offsetX: 0,
|
||||||
|
offsetY: 0,
|
||||||
|
style: {
|
||||||
|
color: isDark ? '#fff' : '#000',
|
||||||
|
fontSize: '14px',
|
||||||
|
fontFamily: 'sans-serif'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}}
|
||||||
|
type="area"
|
||||||
|
height={350}
|
||||||
|
width={'100%'}
|
||||||
|
/>
|
||||||
|
)}
|
||||||
</div>
|
</div>
|
||||||
</>
|
</>
|
||||||
)
|
)
|
||||||
|
|||||||
@ -383,6 +383,17 @@
|
|||||||
"outcome": "مصروف",
|
"outcome": "مصروف",
|
||||||
"income": "دخل",
|
"income": "دخل",
|
||||||
"netProfit": "صافي الربح",
|
"netProfit": "صافي الربح",
|
||||||
"incomeOutcomeGeneralOverview": "نظرة عامة على الدخل والمصروفات"
|
"incomeOutcomeGeneralOverview": "نظرة عامة على الدخل والمصروفات",
|
||||||
|
"noDataAvailable": "لا توجد بيانات متاحة",
|
||||||
|
"members": "الأعضاء",
|
||||||
|
"subscriptions": "الاشتراكات",
|
||||||
|
"activeSubscriptions": "الاشتراكات النشطة",
|
||||||
|
"expiredSubscriptions": "الاشتراكات المنتهية",
|
||||||
|
"soonToExpire": "تنتهي قريباً",
|
||||||
|
"male": "ذكر",
|
||||||
|
"female": "أنثى",
|
||||||
|
"total": "الإجمالي",
|
||||||
|
"active": "نشط",
|
||||||
|
"inactive": "غير نشط"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -387,6 +387,17 @@
|
|||||||
"outcome": "Outcome",
|
"outcome": "Outcome",
|
||||||
"income": "Income",
|
"income": "Income",
|
||||||
"netProfit": "Net profit",
|
"netProfit": "Net profit",
|
||||||
"incomeOutcomeGeneralOverview": "General Income and outcome overview"
|
"incomeOutcomeGeneralOverview": "General Income and outcome overview",
|
||||||
|
"noDataAvailable": "No data available",
|
||||||
|
"members": "Members",
|
||||||
|
"subscriptions": "Subscriptions",
|
||||||
|
"activeSubscriptions": "Active Subscriptions",
|
||||||
|
"expiredSubscriptions": "Expired Subscriptions",
|
||||||
|
"soonToExpire": "Soon to Expire",
|
||||||
|
"male": "Male",
|
||||||
|
"female": "Female",
|
||||||
|
"total": "Total",
|
||||||
|
"active": "Active",
|
||||||
|
"inactive": "Inactive"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
Loading…
Reference in New Issue
Block a user