Vyacheslav Morov

Results 14 comments of Vyacheslav Morov

Hi, This is WIP reports, we haven't released it yet. It works on version from sources only for now.

Yes, we don't have support for plotly tables, but you can use simple version of tables from Evidently: ```python BaseWidgetInfo( title="", type="table", params={"header": ["value", "count"], "data":[['a', 1], ['b', 2]]}, size=2,...

Hi @jenoOvchi, In one of the recent updates, we changed the structure of `config.json`, and `dashboard_tabs` should be a dictionary. You can see an example of `config.json` in the repo...

Oh, sorry, my bad, In your code snippet, you are incorrectly writing JSON to file. Should be something like: ```python with open('config.json', 'w') as outfile: json.dump(config, outfile) ```

Thanks for reporting this. We will check and fix this.

Hi @Riya-Anna-Jeny , Thanks for your interest in our library. Can you provide short explanation about this PR? Why do you think we need change version of plotly dependency?

Hi @strickvl, Yes it is good way to create predefined `ColorOptions` but you don't even need `_set_color_options` as you can write it as: ```python solarized_color_options = ColorOptions(primary_color="#268bd2", secondary_color="#073642", current_data_color="#268bd2", reference_data_color="#073642",...

If you need help why something doesn't work as you thought, you can ask here or in Discord.

Oh, I've missed that: there are no type hints for fields in `ColorOptions` class so `dataclass` do not create `__init__` method with them. Probably, best solution would be add type...

You can change COLOR_DISCRETE_SEQUENCE from list to tuple (immutable), so you will be able to use it directly as before. ```python COLOR_DISCRETE_SEQUENCE = ("#ed0400", "#0a5f38", "#6c3461", "#71aa34", "#d8dcd6", "#6b8ba4") ```