python (12.9k questions)
javascript (9.2k questions)
reactjs (4.7k questions)
java (4.2k questions)
java (4.2k questions)
c# (3.5k questions)
c# (3.5k questions)
html (3.3k questions)
make apexcharts responsive and higher
I have a apex chart like this:
On computer all is fine.
But now I would make it responsive and I tried this code:
var options = {
chart: {
height: 350,
typ...
Trombone0904
Votes: 0
Answers: 1
How to populate a laravel chart with data from database with apexchart?
In my controller I have this query :
$categories = DB::table('categories')
->select('type',DB::raw('COUNT(*) as count_type'))
->groupBy('type')
->orderBy('type','desc')
->...
Jon Rodrigo
Votes: 0
Answers: 1
plotOptions - show values at the beginning
this is my donut chart (ApexCharts):
var options = {
series: [umsatzSum, ausgabenSum, auslagenSum],
chart: {
type: 'donut',
height: 320,
...
Trombone0904
Votes: 0
Answers: 1
show percent values instead of value
I am using the apexcharts to generate a "donut".
If I move the cursor over an element it will sho me the value of this element:
My code for this:
plotOptions: {
pie: {
donut: {
...
Trombone0904
Votes: 0
Answers: 1