HighCharts Label horizontally instead of vertically on IE10 compatibility - highcharts

In Internet Explorer 10, if you set the page to be IE8 documents mode does y-axis label appears horizontally instead of vertically?
We have controls what require us to use the IE8 mode on the page.
I've managed to get it to happen on my site and the HighCharts website too.
Is there a workaround for this?
Thanks

Related

Highchart legends,label are not responsive to mobile mode and it looks too smaller

I am using highchart in react. It looks good in desktop view where as it looks too smaller in mobile devices. how can we make this responsive to make it look better in mobile devices.
Container height is set to 100% then chart appears in full screen but still font and labels are looks smaller.
When we use the highchart in REACT then index.html should have body tag with root div.

Vaadin Flow Grid has no height

I have the following Grid showing Java system properties:
systemPropertyGrid = new Grid<>();
systemPropertyGrid.setItems(buildSystemProperties());
systemPropertyGrid.addColumn(SystemProperty::getProperty).setHeader("Property").setFlexGrow(1);
systemPropertyGrid.addColumn(SystemProperty::getValue).setHeader("Value").setFlexGrow(5);
systemPropertyGrid.setHeight("500px");
All items are shown when I replace the setHeight by setHeightByRows(true). But as soon as I don't specify systemPropertyGrid.setHeightByRows(true) the grid has a calculated height of 2 pixels in the browser (Firefox, Edge) which is the border. However, the element style height is correctly set to 500px as I can see in Firefox developer tools.
Bug in Vaadin Flow? How is this even possible that the browser doesn't use the element style height ultimately?
Screenshot:
SSCCE using the Vaadin Flow spring starter:
my-starter-project_51443246.zip. Call maven goal springBoot:run.
You are right. It doesn't work in Firefox, while it works in Chrome. You can submit an issue in GitHub.
As a workaround, if you set the height of the parent VerticalLayout, it works in both Chrome and Firefox. So, add the following statement:
setHeight("500px");
Fixed in Vaadin Grid v5.0.5 which has been released as part of Vaadin 10.0.9 or Vaadin 11.0.4. So you need to make sure to use either of those. (which of course wasn't released at the time of the original posting)

JQuery Mobile: customize panel widget size

I'm using the panel widget of JQuery Mobile: http://demos.jquerymobile.com/1.4.1/panel/
It looks very nice on phones, but on tablet devices the panel is too small with respect to the screen size.
How can I scale the panel size and its content to the 50% of the screen?
I tried using transform:scale(1.5), but it has a lot of side effects, then I tried to customize the css according to the last part of the page http://demos.jquerymobile.com/1.4.1/panel/, but nothing changed.
Is there a simple way to modify the framework or to dynamically change the size of the elements without creating side effects?

Missing vertical scrollbar in web browser for vaadin 6.8.12

I have recently built a new Vaadin widgetset for our web application. The new widgetset is based on some new addons but especially on vaadin 6.8.12.
When I deploy the ear file and start the application the right vertical scrollbar that belongs to the web browser (not a java panel or layout) is missing. The scrollbar is actually there but you are forced to drag the browser window far to the right in order to make it visible. Even though it is visible you can not scroll down as much as you need to view the lower content of the page.
This is a problem in Chrome, Firefox and Opera but for some reason Interner explorer seems to handle it just fine.
So what I want is that the browser scrollbar should be visible regardless of the size of the window.
Any ideas?
The height of a layout must be undefined for the vertical scrollbar to show up. If you set it to 100%, any content off the bottom of your browser window / tab will be hidden.
If that's not enough, please add some code to see how you made your main window layout.

fixed positioned button in mobile website

I am building a mobile website and need a fixed positioned button (for quick link to scroll to top) that should move across while scrolling the screen. fixed position is not supported by mobile browsers. Can anyone suggest the way around for the same. I am using twitter bootstrap. I have observed fixed position header and footers for mobile in jquery mobile framework but could use it in twitter bootstrap page.
Thanks in advance.
You can use a navbar-fixed-top or navbar-fixed-bottom navbar on your site and that will function properly on mobile devices. Refer to the Optional Display variations section under navbars http://twitter.github.com/bootstrap/components.html#navbar.

Resources