#!/usr/bin/env python # coding: utf-8 #
# # # #
# # VIS # # # ## Line 3D Chart # # More information about this chart [here](https://visjs.github.io/vis-timeline/examples/graph2d/) # In[4]: from epyk.core.Page import Report from epyk.tests import data_urls rptObj = Report() data = rptObj.py.requests.csv(data_urls.PLOTLY_POINTS) c = rptObj.ui._3d.vis.line(data, y_columns=["y"], x_axis="x", z_axis="z") rptObj.ui.button("reset").click([ c.build( rptObj.data.vis.xyz(data[:6], y_columns=["x"], x_axis="x", z_axis="y") ), ]) rptObj.outs.jupyter() # For more details about this charts and the various options and properties available please refer to the [official website](http://nvd3.org/) # # Anything on the website should be available in the Python interface. # # Go back to the Chart Home page #
# Do not forget that this is a collaborative framework so do not hesitate to give feedbacks and like the different repository to get more visbility. # # Also any help is more than welcome !