-
I feel like I might be missing something, but is there a way to generate custom visualizations for my own javascript classes? I'm looking for something like the custom viewers in clerk notebooks or the custom rich display hooks like I have my own javascript classes, and I'd like to create custom visualizations for them inside Observable Framework, how do I do that? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
If you want to visualize anything in framework, you can For example, if you want to visualize a graph with nodes and links, you could use a function that returns an arc diagram, then call I'm not sure this answers your question, though? |
Beta Was this translation helpful? Give feedback.
To add, you can combine the built-in
display
with libraries that generate DOM content, such as D3, Observable Plot, Observable Inputs, Hypertext Literal, and React. You can also generate your own DOM content using the standard DOM API.