D3 Non-Continuous Dates Domain Gives Gaps on X-Axis

前端 未结 2 1263
清酒与你
清酒与你 2020-12-06 07:00

I want to plot some time series data that is not continuous (gaps in the dates for weekends, holidays, etc..). It\'s daily data.

The data looks something like:

2条回答
  •  旧时难觅i
    2020-12-06 07:51

    As Lars Kotthof points out, you can create an ordinal x axis, which "looks" like a time scale. Assuming you want to plot your time series as a line, here is an example how to do it: http://jsfiddle.net/ee2todev/3Lu46oqg/

    If you want to customize your format for the dates, e.g. respresent the date as day (of the week), day and month you have to convert your string to a date first. I added one example which formats the dates in a common German format. But you can easily adjust the code to your needs. http://jsfiddle.net/ee2todev/phLbk0hf/

    Last, but not least, you can use

    axis.tickValues([values])
    

    to choose the dates you want to display. See also: https://github.com/mbostock/d3/wiki/SVG-Axes#tickFormat

提交回复
热议问题