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
This is very important for me please help
@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 } }; } }
Copyright © 2021 Jogjafile Inc.