viewHeightOuter
Set height of the "canvas" including margin.
Specification
Default implementation: { viewHeightOuter : 300 }
Key
Name | Alias | Category |
viewHeightOuter | view__height__outer | View |
Value
Allow positive integers beginning from 1 as value.
Default | Validation | Type |
300 | ^[1-9]d*$ | Integer |
Example A.
Set total height to: 100
Output
Open output in a blank window. Download examples as zip.
Parameters
This dataset shows the mobile google pagerank performance score for a certain website.
Value | Type | |
---|---|---|
Source | "../data/performance.json" | String |
X | "name" | String |
Y | [ "mobile" ] | Array |
Options | { "viewHeightOuter" : 100 } | Object |
Source Code
- Invoke Function
d3.statosio(
file,
"name",
[ "mobile" ],
{ "viewHeightOuter" : 100 }
)
- HTML Implementation
<!DOCTYPE html>
<head>
<title>d3.statosio - viewHeightOuter</title>
<meta content="text/html;charset=utf-8" http-equiv="Content-Type">
<meta content="utf-8" http-equiv="encoding">
<script src="https://cdnjs.cloudflare.com/ajax/libs/d3/6.2.0/d3.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/statosio/0.9/statosio.js"></script>
</head>
<body>
<script>
d3.json( "../data/performance.json" )
.then( ( file ) => {
d3.statosio(
file,
"name",
[ "mobile" ],
{ "viewHeightOuter" : 100 }
)
} )
</script>
</body>
Example B.
Set total height to: 600
Output
Open output in a blank window. Download examples as zip.
Parameters
This dataset shows the mobile google pagerank performance score for a certain website.
Value | Type | |
---|---|---|
Source | "../data/performance.json" | String |
X | "name" | String |
Y | [ "mobile" ] | Array |
Options | { "viewHeightOuter" : 600 } | Object |
Source Code
- Invoke Function
d3.statosio(
file,
"name",
[ "mobile" ],
{ "viewHeightOuter" : 600 }
)
- HTML Implementation
<!DOCTYPE html>
<head>
<title>d3.statosio - viewHeightOuter</title>
<meta content="text/html;charset=utf-8" http-equiv="Content-Type">
<meta content="utf-8" http-equiv="encoding">
<script src="https://cdnjs.cloudflare.com/ajax/libs/d3/6.2.0/d3.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/statosio/0.9/statosio.js"></script>
</head>
<body>
<script>
d3.json( "../data/performance.json" )
.then( ( file ) => {
d3.statosio(
file,
"name",
[ "mobile" ],
{ "viewHeightOuter" : 600 }
)
} )
</script>
</body>