Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Plotly functionality #73

Open
ThierryBleau opened this issue Oct 4, 2021 · 1 comment
Open

Plotly functionality #73

ThierryBleau opened this issue Oct 4, 2021 · 1 comment
Labels
enhancement New feature or request

Comments

@ThierryBleau
Copy link
Collaborator

Now that plotly has an F# library (adapted to lambda function UX), integrating data visualization features should be rather straight forward.
Most functions would simply modify the existing predefined graph object represented by a record that is converted to json value to be returned by the sequence of plotting functions which could then be piped into a rendering function or automatically rendered on the frontend.

Most of the design effort should be focused in the smooth UX when combining pipe sequences and poly record arguments.
image

@ThierryBleau ThierryBleau added the enhancement New feature or request label Oct 4, 2021
@ThierryBleau
Copy link
Collaborator Author

Below is a candidate for a minimal set of features for the MVP.

module Plotly = {
        // chart types
	scatter
	line
	column
	stacked_column
	candlestick
	histogram
	
	// layout
	x_style
	y_style
	line_style
	title
	marker
	combine
	trace_name
	legend
	layout
}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

1 participant