[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2024-05-07 UTC."],[],[],null,["# DrawingOptions interface\n\n\u003cbr /\u003e\n\nOptions for customizing the drawing routines\n\n**Signature:** \n\n export declare interface DrawingOptions \n\nProperties\n----------\n\n| Property | Type | Description |\n|--------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------|\n| [color](./tasks-vision.drawingoptions#drawingoptionscolor) | string \\| CanvasGradient \\| CanvasPattern \\| [Callback](./tasks-vision#callback)\\\u003c[LandmarkData](./tasks-vision.landmarkdata#landmarkdata_interface), string \\| CanvasGradient \\| CanvasPattern\\\u003e | The color that is used to draw the shape. Defaults to white. |\n| [fillColor](./tasks-vision.drawingoptions#drawingoptionsfillcolor) | string \\| CanvasGradient \\| CanvasPattern \\| [Callback](./tasks-vision#callback)\\\u003c[LandmarkData](./tasks-vision.landmarkdata#landmarkdata_interface), string \\| CanvasGradient \\| CanvasPattern\\\u003e | The color that is used to fill the shape. Defaults to `.color` (or black if color is not set). |\n| [lineWidth](./tasks-vision.drawingoptions#drawingoptionslinewidth) | number \\| [Callback](./tasks-vision#callback)\\\u003c[LandmarkData](./tasks-vision.landmarkdata#landmarkdata_interface), number\\\u003e | The width of the line boundary of the shape. Defaults to 4. |\n| [radius](./tasks-vision.drawingoptions#drawingoptionsradius) | number \\| [Callback](./tasks-vision#callback)\\\u003c[LandmarkData](./tasks-vision.landmarkdata#landmarkdata_interface), number\\\u003e | The radius of location marker. Defaults to 6. |\n\nDrawingOptions.color\n--------------------\n\nThe color that is used to draw the shape. Defaults to white.\n\n**Signature:** \n\n color?: string | CanvasGradient | CanvasPattern | Callback\u003cLandmarkData, string | CanvasGradient | CanvasPattern\u003e;\n\nDrawingOptions.fillColor\n------------------------\n\nThe color that is used to fill the shape. Defaults to `.color` (or black if color is not set).\n\n**Signature:** \n\n fillColor?: string | CanvasGradient | CanvasPattern | Callback\u003cLandmarkData, string | CanvasGradient | CanvasPattern\u003e;\n\nDrawingOptions.lineWidth\n------------------------\n\nThe width of the line boundary of the shape. Defaults to 4.\n\n**Signature:** \n\n lineWidth?: number | Callback\u003cLandmarkData, number\u003e;\n\nDrawingOptions.radius\n---------------------\n\nThe radius of location marker. Defaults to 6.\n\n**Signature:** \n\n radius?: number | Callback\u003cLandmarkData, number\u003e;"]]