I need to use google chart with two y-axis and one x-axis, like (https://en.wikipedia.org/wiki/Spirometry#/media/File:Flow-volume-loop.svg). Does google chart support this type of graph?
相关问题
- Angular RxJS mergeMap types
- npm WARN optional SKIPPING OPTIONAL DEPENDENCY: fs
- How to update placeholder text in ng2-smart-table?
- How to instantiate Http service in main.ts manuall
- Angular: ngc or tsc?
相关文章
- angular脚手架在ie9+下兼容问题
- angular 前端项目 build 报错 "Cannot find module 'le
- Angular Material Stepper causes mat-formfield to v
- After upgrade to Angular 9 cannot find variable in
- Mercurial Commit Charts / Graphs [closed]
- is there any difference between import { Observabl
- Suppress “Circular dependency detected” suppress w
- How can you get current positional information abo
to create a graph as referenced by the link
use a single y-axis, with negative values for the bottom portion
then use object notation to set both the value (
v:
) and the formatted value (f:
){v: -8, f: '8'}
then use the same notation for the y-axis tick marks (
ticks:
)the chart will display the formatted value on the axis as well as tooltips
see following working snippet...