簡體   English   中英

Django應用中Highcharts圖中的X軸標簽

[英]X axis label in Highcharts graph in Django app

我通過以下代碼創建了Highcharts圖:

def chart_data(request):

    dataset = DispatchPlan.objects.annotate(month=TruncMonth('scheduled_date')).values('month').annotate(
        c=Sum('weight')).values('month', 'c')

    chart = {
        'chart': {'type': 'column'},
        'title': {'text': 'Weight Dispatched by Months'},
        'series': [{
            'name': 'Months',
            'data': [{'name': row['month'], 'y': row["c"]} for row in dataset]
        }]
    }

    return JsonResponse(chart)

如何添加X軸標簽,使其顯示月份名稱而不是0和1?

這是繪制圖表的數據集的一行

{'month': datetime.datetime(2019, 6, 1, 0, 0, tzinfo=<DstTzInfo 'Asia/Kolkata' IST+5:30:00 STD>), 'c': 17600}

嘗試像這樣使用strftime文檔 ):

{'month': datetime.datetime(2019, 6, 1, 0, 0, tzinfo=<DstTzInfo 'Asia/Kolkata' IST+5:30:00 STD>).strftime("%B"), 'c': 17600}

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM