@antv/g2
Version:
the Grammar of Graphics in Javascript
31 lines (26 loc) • 774 B
text/typescript
import { CoordinateComponent as CC } from '../runtime';
import { ThetaCoordinate } from '../spec';
import { Polar } from './polar';
import { Transpose } from './transpose';
export type ThetaOptions = ThetaCoordinate;
export const getThetaOptions = (options: ThetaOptions = {}) => {
const defaultOptions = {
startAngle: -Math.PI / 2,
endAngle: (Math.PI * 3) / 2,
innerRadius: 0,
outerRadius: 1,
};
return { ...defaultOptions, ...options };
};
/**
* Theta = Transpose + Polar.
*/
export const Theta: CC<ThetaOptions> = (options) => {
const { startAngle, endAngle, innerRadius, outerRadius } =
getThetaOptions(options);
return [
...Transpose(),
...Polar({ startAngle, endAngle, innerRadius, outerRadius }),
];
};
Theta.props = {};