Get chart data for a project.

GET /api/v2/projects/111/charts/?format=api
HTTP 200 OK
Allow: GET, HEAD, OPTIONS
Content-Type: application/json
Vary: Accept

{
    "summary_data": [
        {
            "id": "captures",
            "title": "Captures",
            "plots": [
                {
                    "title": "Average captures per hour",
                    "data": {
                        "x": [
                            "1:00 AM",
                            "2:00 AM"
                        ],
                        "y": [
                            1.0,
                            2.0
                        ],
                        "ticktext": [
                            "1:00 AM",
                            "2:00 AM"
                        ]
                    },
                    "type": "bar"
                },
                {
                    "title": "Captures per month",
                    "data": {
                        "x": [
                            "Jan",
                            "Feb",
                            "Mar",
                            "Apr",
                            "May",
                            "Jun",
                            "Jul",
                            "Aug",
                            "Sep",
                            "Oct",
                            "Nov",
                            "Dec"
                        ],
                        "y": [
                            0,
                            0,
                            0,
                            0,
                            0,
                            0,
                            0,
                            3,
                            0,
                            0,
                            0,
                            0
                        ],
                        "tickvals": [
                            "Jan",
                            "Feb",
                            "Mar",
                            "Apr",
                            "May",
                            "Jun",
                            "Jul",
                            "Aug",
                            "Sep",
                            "Oct",
                            "Nov",
                            "Dec"
                        ]
                    },
                    "type": "bar"
                }
            ]
        },
        {
            "id": "occurrences",
            "title": "Occurrences",
            "plots": [
                {
                    "title": "Average detections per hour",
                    "data": {
                        "x": [],
                        "y": [],
                        "ticktext": []
                    },
                    "type": "bar"
                },
                {
                    "title": "Occurrences per month",
                    "data": {
                        "x": [
                            "Jan",
                            "Feb",
                            "Mar",
                            "Apr",
                            "May",
                            "Jun",
                            "Jul",
                            "Aug",
                            "Sep",
                            "Oct",
                            "Nov",
                            "Dec"
                        ],
                        "y": [
                            0,
                            0,
                            0,
                            0,
                            0,
                            0,
                            0,
                            0,
                            0,
                            0,
                            0,
                            0
                        ],
                        "tickvals": [
                            "Jan",
                            "Feb",
                            "Mar",
                            "Apr",
                            "May",
                            "Jun",
                            "Jul",
                            "Aug",
                            "Sep",
                            "Oct",
                            "Nov",
                            "Dec"
                        ]
                    },
                    "type": "bar"
                }
            ]
        },
        {
            "id": "taxa",
            "title": "Taxa",
            "plots": [
                {
                    "title": "Top species observed",
                    "data": {
                        "x": [],
                        "y": []
                    },
                    "type": "bar",
                    "orientation": "h"
                },
                {
                    "title": "Unique species per month",
                    "data": {
                        "x": [
                            "Jan",
                            "Feb",
                            "Mar",
                            "Apr",
                            "May",
                            "Jun",
                            "Jul",
                            "Aug",
                            "Sep",
                            "Oct",
                            "Nov",
                            "Dec"
                        ],
                        "y": [
                            0,
                            0,
                            0,
                            0,
                            0,
                            0,
                            0,
                            0,
                            0,
                            0,
                            0,
                            0
                        ],
                        "tickvals": [
                            "Jan",
                            "Feb",
                            "Mar",
                            "Apr",
                            "May",
                            "Jun",
                            "Jul",
                            "Aug",
                            "Sep",
                            "Oct",
                            "Nov",
                            "Dec"
                        ]
                    },
                    "type": "bar"
                }
            ]
        }
    ]
}