小编Dun*_*dnd的帖子

Highcharts - 在x轴和y轴上隐藏系列"点"(标签)

如何从x轴和y轴移除系列点/标签?

下面是我的图表(我的代码上有图像)

在此输入图像描述

我想删除: 0k, 20k, 40k, 60k0, 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)

javascript jquery highcharts

2
推荐指数
1
解决办法
4046
查看次数

比较同一列的两列

我想显示的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数据库

sql northwind

1
推荐指数
1
解决办法
3782
查看次数

标签 统计

highcharts ×1

javascript ×1

jquery ×1

northwind ×1

sql ×1