Skip to content

Commit

Permalink
Auto-sync from Azure-Kusto-Service
Browse files Browse the repository at this point in the history
  • Loading branch information
Kusto Build System committed Dec 9, 2024
1 parent 362f4a8 commit 7cb8e49
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/Kusto.Language/Parser/KustoFacts.cs
Original file line number Diff line number Diff line change
Expand Up @@ -91,15 +91,16 @@ public static IReadOnlyList<string> KnownQueryOperatorParameterNames
public static readonly IReadOnlyList<string> ChartTypes = new string[]
{
"table", "list", "barchart", "piechart", "ladderchart", "timechart", "linechart", "anomalychart", "pivotchart", "areachart",
"stackedareachart", "scatterchart", "timepivot", "columnchart", "timeline", "3Dchart", "card", "treemap", "plotly", "graph"
"stackedareachart", "scatterchart", "timepivot", "columnchart", "timeline", "3Dchart", "card", "treemap", "plotly", "graph", "sankey"
};

/// <summary>
/// Chart types not shown in intellisense
/// </summary>
public static readonly IReadOnlyList<string> HiddenChartTypes = new string[]
{
"3Dchart",
"3Dchart",
"sankey", // TODO: unhide it once service-side supports this
"graph" // TODO: unhide it once service-side supports this
};

Expand Down

0 comments on commit 7cb8e49

Please sign in to comment.