We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Is there a way to disable the default renderer that prints:
ExtendedUnitSpecBuilder(ExtendedUnitSpec(None,None,Bar,Some( Encoding(None,None,Some(PositionChannelDef(None,None,None,Some(service), Some(Nominal),None,None,None,None,None)),Some(PositionChannelDef( None,None,None,Some(in_octets_total),None,None,None,None,None,None)), None,None,None,None,None,None,None,None,None,None,None)) ....
I've defined my own renderer using:
implicit val renderer = vegas.render.ShowRender.using(sb => kernel.display.jsonContent("application/vnd.vegalite.v1+json", sb.toJson))
But the object itself is still printed whenever the plot is defined.
If i just do plot.show in a separate cell after the fact then it doesn't print out the object and displayed my plot correctly.
plot.show
Theres something that is making the plot print out the ExtendedUnitSpecBuilder only when its defined, not sure where to look.
ExtendedUnitSpecBuilder
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Is there a way to disable the default renderer that prints:
I've defined my own renderer using:
But the object itself is still printed whenever the plot is defined.
If i just do
plot.show
in a separate cell after the fact then it doesn't print out the object and displayed my plot correctly.Theres something that is making the plot print out the
ExtendedUnitSpecBuilder
only when its defined, not sure where to look.The text was updated successfully, but these errors were encountered: