styleOtherRangeXTextRotation

Set text rotation of the x axis.

Specification

Default implementation: { styleOtherRangeXTextRotation : -45 }

Key

Name Alias Category 
styleOtherRangeXTextRotation style__other__range_x_text_rotation Style 

Value

Allow negative integers from -90 to -1 including 0 as value.

Default Validation Type 
-45 ^0|-[1-9]d* Integer 

Example A.

Set x range text label rotation to: -90

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 "https://docs.statosio.com/data/performance.json"  
X "name" String
Y [ "mobile" ] Array
Options { "styleOtherRangeXTextRotation" : -90 } Object

Javascript

  • Invoke Function
d3.statosio( 
    file, 
    "name", 
    [ "mobile" ], 
    { "styleOtherRangeXTextRotation" : -90 }
)
  • HTML Implementation
<!DOCTYPE html>
<head>
    <title>docs.statosio - styleOtherRangeXTextRotation</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( "https://docs.statosio.com/data/performance.json" )
            .then( ( file ) => {
                d3.statosio( 
                    file, 
                    "name", 
                    [ "mobile" ], 
                    { "styleOtherRangeXTextRotation" : -90 }
                )
            } )
    </script>
</body>

Ruby

  • Gem Install
gem install statosio
gem install prawn
gem install prawn-svg
gem install open-uri
  • Implementation
require "statosio"

require "open-uri"
require "prawn"
require "prawn-svg"

url = "https://docs.statosio.com/data/performance.json"
file = OpenURI::open_uri( url ).read
dataset = JSON.parse( file )

statosio = Statosio::Generate.new
chart = statosio.svg(
    dataset: dataset,
    x: "name", 
    y: [ "mobile" ],
    options: {"styleOtherRangeXTextRotation"=>-90}
    
)

Prawn::Document.generate( "statosio.pdf" ) do | pdf |
  pdf.svg( chart, width: 500 )
end

Example B.

Set x range text label rotation to: -20

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 "https://docs.statosio.com/data/performance.json"  
X "name" String
Y [ "mobile" ] Array
Options { "styleOtherRangeXTextRotation" : -20 } Object

Javascript

  • Invoke Function
d3.statosio( 
    file, 
    "name", 
    [ "mobile" ], 
    { "styleOtherRangeXTextRotation" : -20 }
)
  • HTML Implementation
<!DOCTYPE html>
<head>
    <title>docs.statosio - styleOtherRangeXTextRotation</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( "https://docs.statosio.com/data/performance.json" )
            .then( ( file ) => {
                d3.statosio( 
                    file, 
                    "name", 
                    [ "mobile" ], 
                    { "styleOtherRangeXTextRotation" : -20 }
                )
            } )
    </script>
</body>

Ruby

  • Gem Install
gem install statosio
gem install prawn
gem install prawn-svg
gem install open-uri
  • Implementation
require "statosio"

require "open-uri"
require "prawn"
require "prawn-svg"

url = "https://docs.statosio.com/data/performance.json"
file = OpenURI::open_uri( url ).read
dataset = JSON.parse( file )

statosio = Statosio::Generate.new
chart = statosio.svg(
    dataset: dataset,
    x: "name", 
    y: [ "mobile" ],
    options: {"styleOtherRangeXTextRotation"=>-20}
    
)

Prawn::Document.generate( "statosio.pdf" ) do | pdf |
  pdf.svg( chart, width: 500 )
end