- Learning Highcharts
- Joseph Kuan
- 163字
- 2021-08-05 18:23:46
Conventions
In this book, you will find a number of styles of text that distinguish between different kinds of information. Here are some examples of these styles, and an explanation of their meaning.
Code words in text are shown as follows: "The renderTo
option instructs Highcharts to display the graph onto the HTML <div>
element with 'container'
as the ID value, which is defined in the HTML <body>
section."
A block of code is set as follows:
<svg xmlns="http://www.w3.org/2000/svg" version="1.1"> <path id="curveAB" d="M 100 350 q 150 -300 300 0" stroke="blue" stroke-width="5" fill="none" /> <!-- Mark relevant points --> <g stroke="black" stroke-width="3" fill="black"> <circle id="pointA" cx="100" cy="350" r="3" /> <circle id="pointB" cx="400" cy="350" r="3" /> </g> <!-- Label the points --> <g font-size="30" font="sans-serif" fill="black" stroke="none" text-anchor="middle"> <text x="100" y="350" dx="-30">A</text> <text x="400" y="350" dx="30">B</text> </g> </svg>
Any command-line input or output is written as follows:
java -jar batik-rasterizer.jar /tmp/chart.svg
New terms and important words are shown in bold. Words that you see on the screen, in menus or dialog boxes for example, appear in the text like this: "The first four series—UK, Germany, S. Korea, and Japan are stacked together as a single column and US is displayed as a separate column."
- Web程序設計及應用
- Intel Galileo Essentials
- Angular UI Development with PrimeNG
- Rust編程:入門、實戰與進階
- Android開發精要
- UI智能化與前端智能化:工程技術、實現方法與編程思想
- Oracle Database 12c Security Cookbook
- 嚴密系統設計:方法、趨勢與挑戰
- 青少年Python編程入門
- Advanced Oracle PL/SQL Developer's Guide(Second Edition)
- Jenkins Continuous Integration Cookbook(Second Edition)
- Clean Code in C#
- Java高并發編程詳解:深入理解并發核心庫
- jQuery Mobile Web Development Essentials(Second Edition)
- SCRATCH編程課:我的游戲我做主