ここをクリックしてくださいfabricJS-circle、番号1または2または3のようなテキストを追加する方法がありません...キャンバスの円の中に?fabricJSの円オブジェクトにテキストを追加するにはどうすればよいですか?
function makeStaion(left, top, stationID) {
var c = new fabric.Circle({
left: left,
top: top,
radius: 2,
fill: '#5afffa',
stroke: '#666',
selectable: true,
centeredScaling:true,
padding:2,
hasRotatingPoint: false,
borderColor: 'black',
cornerColor: 'black'
});
c.hasControls = true;
c.station = true;
c.stationID = stationID;
c.stationName = stations[stationID].name;
c.description = stations[stationID].desc;
c.image = stations[stationID].image;
return c;
}
Miss.Moranは、あなたはいくつかの助け(答えを)取得するために試したコードを更新する必要があります。参照してください: - http://stackoverflow.com/help/how-to-askトピックオフとしてあなたのクエリを閉じないように多くの可能性があります。 – Prasad