Rotate text
How to rotate the cell text between -90 to 90 degrees.
Documentation
Methods
Method | Description |
rotate(mixed, value) |
Rotate the spreadsheet cell text.
rotate(cell: string|array, number: number) : void |
Initial Settings
The initial definition for a text rotation is using the property cells.
Examples
How to rotate the cell text between -90 to 90 degrees.
Source code
<script src="https://jspreadsheet.com/v9/jspreadsheet.js"></script>
<script src="https://jsuites.net/v5/jsuites.js"></script>
<link rel="stylesheet" href="https://jspreadsheet.com/v9/jspreadsheet.css" type="text/css" />
<link rel="stylesheet" href="https://jsuites.net/v5/jsuites.css" type="text/css" />
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Material+Icons" />
<div id="spreadsheet"></div>
<p><input type="button" value="Rotate A1 (-90deg)" onclick="rotate(this)"></p>
<script>
var rotate = function(b) {
worksheets[0].rotate('A1', -90);
}
// Set your JSS license key (The following key only works for one day)
jspreadsheet.setLicense('ZTA0NjJmOGM0MjVjYWE0ZGYwNTU5NWZiNGMyYmU0NTMxNjE4ZmFhMTc4ZjgzMDY1ZTMxMzk2M2ZkZWMxYWJiYjY5MjIwNTRjZmFkMDdmOGI3MzRkNWE5MmNlYWI2ODZhOTczZDZiODI4MmVkNjE0NmZlMzY2YjBiMzIwNTZkZTcsZXlKdVlXMWxJam9pU25Od2NtVmhaSE5vWldWMElpd2laR0YwWlNJNk1UWTVOalE1T1RjeE1pd2laRzl0WVdsdUlqcGJJbXB6Y0hKbFlXUnphR1ZsZEM1amIyMGlMQ0pqYjJSbGMyRnVaR0p2ZUM1cGJ5SXNJbXB6YUdWc2JDNXVaWFFpTENKamMySXVZWEJ3SWl3aWQyVmlJaXdpYkc5allXeG9iM04wSWwwc0luQnNZVzRpT2lJek5DSXNJbk5qYjNCbElqcGJJblkzSWl3aWRqZ2lMQ0oyT1NJc0luWXhNQ0lzSW1Ob1lYSjBjeUlzSW1admNtMXpJaXdpWm05eWJYVnNZU0lzSW5CaGNuTmxjaUlzSW5KbGJtUmxjaUlzSW1OdmJXMWxiblJ6SWl3aWFXMXdiM0owSWl3aVltRnlJaXdpZG1Gc2FXUmhkR2x2Ym5NaUxDSnpaV0Z5WTJnaUxDSndjbWx1ZENJc0luTm9aV1YwY3lKZExDSmtaVzF2SWpwMGNuVmxmUT09');
// Create a new spreadsheet
var worksheets = jspreadsheet(document.getElementById('spreadsheet'), {
worksheets: [{
data: [
['Mazda', 2001, 2000, 1],
['Peugeot', 2010, 5000, 1],
['Honda Fit', 2009, 3000, 1],
['Honda CRV', 2010, 6000, 0],
],
columns: [{},{},{},{ type:'checkbox' }],
cells: {
A1: { rotate: 90, }
},
}]
});
</script>
</html>