yuankunzhang / charming

A visualization library for Rust
Apache License 2.0
1.85k stars 73 forks source link

Added custom font setting #112

Closed LukaOber closed 3 weeks ago

LukaOber commented 3 weeks ago

Added enums for custom font settings.

These were either not available or just settable as a String. This PR will add type safety to these settings where they were previously available and add them to new places like AxisLabel (fixes #111 ).

These won't be breaking changes as the types implement From<Into<String>> and old configurations are getting converted.

The last commit switches the gallery examples to the new types.