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 your feature request related to a problem? Please describe. When add -O html to the ghz command, the html output:
The problem was that in the dependencies, the britecharts versions (in css and javascript) were out of date.
I had to modify to the code in the HTML attachment fix the issue. However, when I hovered over the histogram, it did not display anything.
Describe the solution you'd like I am requesting for an update of britecharts from version 2 to version 3.
Describe alternatives you've considered I have modified the HTML webpage by changing the following lines:
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/britecharts/dist/css/britecharts.min.css" type="text/css" /></head>
to
<script src="https://cdn.jsdelivr.net/npm/britecharts@2/dist/bundled/britecharts.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/britecharts@3/dist/bundled/britecharts.min.js"></script>
tooltip.numberFormat('');
tooltip.valueFormatter(function(v) { var percent = v / count * 100; return v + ' ' + '(' + Number.parseFloat(percent).toFixed(1) + ' %)'; })
with
tooltip.numberFormat(function(v) { var percent = v / count * 100; return v + ' ' + '(' + Number.parseFloat(percent).toFixed(1) + ' %)'; })
Additional context Before any changes were made, this is what I saw
After making modifications to the html webpage, I saw
The text was updated successfully, but these errors were encountered:
I meant to say that
was updated to
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/britecharts@3/dist/css/britecharts.min.css" type="text/css" /></head>
Sorry, something went wrong.
Also facing this issue.
The URL https://cdn.jsdelivr.net/npm/britecharts@2/dist/bundled/britecharts.min.js results in a 403: Package size exceeded the configured limit of 100 MB.
403
Package size exceeded the configured limit of 100 MB.
Suggested change: #402 (temporary until the CDN has been fixed?).
No branches or pull requests
Is your feature request related to a problem? Please describe.
When add -O html to the ghz command, the html output:
The problem was that in the dependencies, the britecharts versions (in css and javascript) were out of date.
I had to modify to the code in the HTML attachment fix the issue. However, when I hovered over the histogram, it did not display anything.
Describe the solution you'd like
I am requesting for an update of britecharts from version 2 to version 3.
Describe alternatives you've considered
I have modified the HTML webpage by changing the following lines:
to
<script src="https://cdn.jsdelivr.net/npm/britecharts@2/dist/bundled/britecharts.min.js"></script>
to
<script src="https://cdn.jsdelivr.net/npm/britecharts@3/dist/bundled/britecharts.min.js"></script>
tooltip.numberFormat('');
tooltip.valueFormatter(function(v) { var percent = v / count * 100; return v + ' ' + '(' + Number.parseFloat(percent).toFixed(1) + ' %)'; })
with
tooltip.numberFormat(function(v) { var percent = v / count * 100; return v + ' ' + '(' + Number.parseFloat(percent).toFixed(1) + ' %)'; })
Additional context
Before any changes were made, this is what I saw
After making modifications to the html webpage, I saw
The text was updated successfully, but these errors were encountered: