* fix accessibility scan error: user-scalable on <meta> tag disables zooming on mobile devices

* update charts

* update charts
This commit is contained in:
Chris Lovett 2023-03-08 19:06:36 -08:00 коммит произвёл GitHub
Родитель 5c1d96eed8
Коммит 99c319a58b
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
4 изменённых файлов: 1997 добавлений и 118 удалений

2105
Scripts/Notebooks/AzurePerformanceGraphs.ipynb поставляемый

Различия файлов скрыты, потому что одна или несколько строк слишком длинны

Просмотреть файл

@ -11,7 +11,9 @@ def plots_with_error_bars(width, height, title, data_frame, color='#4080A0'):
('name', '@ids'),
('mean', '@ys ± @error')
])
p = figure(plot_height=height, plot_width=width, title=title, tools=[hover])
p = figure(title=title, tools=[hover])
p.height = height
p.width = width
ys = data_frame["mean"].values
xs = list(range(len(ys)))

Просмотреть файл

@ -1,3 +1,5 @@
azure-cosmos
ipykernel>=6.20
jupyter
jupyter
pandas
bokeh

Просмотреть файл

@ -13,7 +13,7 @@
{% if page and page.canonical_url %}<link rel="canonical" href="{{ page.canonical_url }}">{% endif %}
{% if config.site_favicon %}<link rel="shortcut icon" href="{{ base_url }}{{ config.site_favicon }}">
{% else %}<link rel="shortcut icon" href="{{ base_url }}img/favicon.ico">{% endif %}
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0" />
{%- endblock %}
{%- block htmltitle %}