Plot =import("https://cdn.jsdelivr.net/npm/@observablehq/plot/+esm")Plot.plot({title: title,subtitle: subtitle,caption: caption,marginTop: marginTop,marginRight: marginRight,marginBottom: marginBottom,marginLeft: marginLeft,height: height,width: width,style: {fontSize: fontSize },x: {label: Xlabel,grid: Xgrid,tickRotate: XtickRotate,inset: Xinset },y: {label: Ylabel,grid: Ygrid,domain:[0,maxDomain],ticks: nbTicks,tickFormat: d=> d.toLocaleString('fr-FR'),// permet d'enlever les , comme séparateurs de milliers },// utile si en fill on met une propriété//color: {legend: true},marks: [ frame ? Plot.frame() :null,// si frame est true alors on fait un frame sinon on renvoie null = ne rien faire ruleX0 ? Plot.ruleX([0]) :null, ruleY0 ? Plot.ruleY([0]) :null, Plot.barY(data, {x:"category",y:"value",fill: fill,fillOpacity: fillOpacity,stroke: stroke,strokeWidth: strokeWidth,strokeOpacity: strokeOpacity,insetRight: LRinset,insetLeft: LRinset,ry1: ry1,tip: {format: { y: d =>Math.round(d).toLocaleString('fr-FR'), } } }) ],})
data
Expand
Plot.plot({height:300,x: {type:"band"},// plusieurs type de scales sont possibles time, band, point, à creuser...color: {legend: legend,type:"categorical",scheme: scheme },marks: [ Plot.barY(data, {x:"category",y:"value",fill: channelFill,//fillOpacity: "value",stroke: strokeFill,//strokeOpacity: "value",strokeWidth:5,//opacity: "value", }) ],})
md`## La documentation officielle :[La documentation officielle sur https://observablehq.com/plot/getting-started](https://observablehq.com/plot/getting-started)## La gallerie de graph[Des dizaines d'exemples sur https://observablehq.com/\@observablehq/plot-gallery](https://observablehq.com/@observablehq/plot-gallery)## Les **cheatsheets** :[La feuille de triche en pdf à avoir sous la main...](https://github.com/observablehq/plot-cheatsheets/raw/main/plot-cheatsheets.pdf)Et en notebooks : [Marks](https://observablehq.com/d/882059bb1761049d), [Scales](https://observablehq.com/d/93c789be8f819caf), [Layout](https://observablehq.com/d/b6ffda3b7612b969), [Transforms](https://observablehq.com/d/a742f171e7a58806), [Colors](https://observablehq.com/@clokman/plot-cheatsheets-colors)`// mystère ces pages redirigent vers le site de la doc alors qu'elles s'ouvrent via google... mystère j'ai pris les forks du coup// Et en notebooks : [Marks](https://observablehq.com/@observablehq/plot-cheatsheets-marks), [Scales](https://observablehq.com/@observablehq/plot-cheatsheets-scales), [Layout](https://observablehq.com/@observablehq/plot-cheatsheets-layouts), [Transforms](https://observablehq.com/@observablehq/plot-cheatsheets-transforms), [Colors](https://observablehq.com/@observablehq/plot-cheatsheets-colors)