如何从x轴和y轴移除系列点/标签?
下面是我的图表(我的代码上有图像)

我想删除:
0k, 20k, 40k, 60k和0, 2.5, 5, 7.5等点.
码:
$(function () {
$('#fullwidth').highcharts({
chart: {
type: 'area',
backgroundColor: null
},
title: {
text: ''
},
subtitle: {
text: ''
},
legend: {
enabled: false,
},
credits: {
enabled: false
},
xAxis: {
},
yAxis: {
gridLineWidth: 0,
minorGridLineWidth: 0,
title: {
text: ''
},
},
tooltip: {
pointFormat: '{series.name} clicks <b>{point.y:,.0f}</b>'
},
plotOptions: {
area: {
marker: {
enabled: false,
symbol: 'circle',
radius: 2,
states: …Run Code Online (Sandbox Code Playgroud) 我想显示的OrderID所有订单的那个地方后放置放置所有的订单底部美元的市场.
我使用了fllowing查询
select
Orders.OrderID
from
Orders
where
Orders.OrderDate > (
select
Orders.OrderDate
from
Orders
where
Orders.CustomerID = (
select
Customers.CustomerID
from
Customers
where
Customers.CompanyName='Bottom-Dollar Markets'
)
);
Run Code Online (Sandbox Code Playgroud)
但它给出了错误子查询回溯多个值
我正在使用northwind数据库