Angular bubbles chart using ng-apexcharts

199 Views Asked by At

How can I do a bubble chart only with two dates in the xAxis with a min date and a max date
with ng-apexcharts
this is an example
enter image description here

This is very important for me please help

1

There are 1 best solutions below

2
On
@Component({
  selector: "app-root",
  templateUrl: "./app.component.html",
  styleUrls: ["./app.component.css"]
})
export class AppComponent {
  @ViewChild("chart") chart: ChartComponent;
  public chartOptions: Partial<ChartOptions>;

  constructor() {
    this.chartOptions = {
      xaxis: {
        tickAmount: 12,
        type: "datetime",
        labels: {
          datetimeFormatter: {
            year: 'yyyy',
            month: 'MM/yyyy',
            day: 'MM/yyyy',
            hour: 'HH:mm'
          }
        }
      },
      series: [
        {
          name: "Bubble1",
          data: [[new Date().getTime(), 43, 28]]
        },
        {
          name: "Bubble2",
          data: [[new Date().getTime(), 60, 28]
        }
      ],
      chart: {
        height: 350,
        type: "bubble"
      },
      dataLabels: {
        enabled: false
      },
      fill: {
        opacity: 0.8
      },
      title: {
        text: "Simple Bubble Chart"
      },
      yaxis: {
        max: 70
      }
    };
  }
}