java - Gantt chart with nanoseconds -


I need to create a Gantt chart for data from a microprocessor, which has the accuracy of nanosecond and the total duration of one second The Gantt Chart completes my needs in the Geoffrey Chart, except that it is Java. Tissue Which is exactly the exact millisecond (as mentioned here).

The date 4G can be used instead, but it is not really possible to change a lot of internal code.

To make a nanosecond, it is necessary to create a value addition subclass. There are some examples in this, which deal with custom labeling with value addition and unfortunately I could not find any way to make a nanosecond's timecale.

If someone can show me that the current date is latitude nanosecond labeling with Gantt chart.

I am managed to solve my problem by overwriting the date axis with the number format format Used to keep clock cycle in X axis

  square plot plot = (category plot) chart.getPlot (); CategoryImrenderRender Render = Plot Gate Renderer (); Renderer.setSeriesPaint (0, Color. Blue); Number xxx = new number axis; Decimal format format = (the decimal time) the decimal times. Data number difference (locale. Nglish); Format.applyPattern ("#"); XAxis.setNumberFormatOverride (format); XAxis.setLabel ("cycle"); Plot.setRangeAxis (xAxis); Renderer.setBaseToolTipGenerator (new interval cadetlettip generator ("{3} - {4}", format));  

Comments