Open
Description
Thank you for creating such a great tool.
I am trying to set the margin of xAxis as auto, but could not find this in the tablesaw api. Maybe I am missing something (see sample JS below).
Because Plot.ly has been constantly adding new properties, a more direct way to set the layout/trace properties might be useful. For example:
Layout.builder()
.set("autosize", "true")
.set("width", 500)
.set(yAxis().builder().set("automargin", "true").build() )
.build();
This not only will enable flexible property injection to the graph components, but also will allow developers to directly use existing Plot.ly docuents and examples as a reference without searching a corresponding Java method.