This commit is contained in:
2024-04-27 09:23:34 +02:00
commit 11e713ca6f
11884 changed files with 3263371 additions and 0 deletions

View File

@@ -0,0 +1,33 @@
using System;
using System.Collections.Generic;
using System.Text;
using JsonFx.Json;
namespace OpenFlashChart
{
public class BarSketch:BarBase
{
private string outlinecolour;
private int? offset;
public BarSketch(string colour,string outlinecolor,int? offset)
{
this.ChartType = "bar_sketch";
this.Colour = colour;
this.outlinecolour = outlinecolor;
this.offset = offset;
}
[JsonProperty("offset")]
public int? Offset
{
get { return offset.Value; }
set { this.offset = value; }
}
[JsonProperty("outline-colour")]
public string OutlineColour
{
get { return outlinecolour; }
set { this.outlinecolour = value; }
}
}
}