Paragraphs are separated by a blank line.
2nd paragraph. Italic, bold, and monospace
. Itemized lists
look like:
- this one
- that one
using System; | |
using System.IO; | |
using System.Linq; | |
using Parquet; | |
namespace parquetdemo | |
{ | |
public class SimpleStructure | |
{ | |
public int Id { get; set; } |
module powerbi.visuals { | |
export class BubbleTooltipVisual implements IVisual { | |
public static capabilities: VisualCapabilities = { | |
// This is what will appear in the 'Field Wells' in reports | |
dataRoles: [ | |
{ | |
name: 'Category', | |
kind: powerbi.VisualDataRoleKind.Grouping, | |
}, |
// This PowerBI Visual errors as it runs in a sandbox | |
module powerbi.visuals { | |
export class YourVisual implements IVisual { | |
public static capabilities: VisualCapabilities = { | |
// This is what will appear in the 'Field Wells' in reports | |
dataRoles: [ | |
{ | |
name: 'Category', | |
kind: powerbi.VisualDataRoleKind.Grouping, |
declare module BABYLON { | |
export class Engine { | |
constructor(canvas:HTMLElement, antialias:boolean); | |
runRenderLoop(it:any); | |
resize(); | |
} | |
export class Scene { | |
constructor(engine:Engine); | |
render(); | |
} |
module powerbi.visuals { | |
export class LoremFlickr implements IVisual { | |
public static capabilities: VisualCapabilities = { | |
// This is what will appear in the 'Field Wells' in reports | |
dataRoles: [ | |
{ | |
name: 'Category', | |
kind: powerbi.VisualDataRoleKind.Grouping, | |
}, | |
{ |
declare module BABYLON { | |
export class Engine { | |
constructor(canvas:HTMLElement, antialias:boolean); | |
runRenderLoop(it:any); | |
resize(); | |
} | |
export class Scene { | |
constructor(engine:Engine); | |
render(); | |
} |
declare module google.maps { | |
/***** Map *****/ | |
export class LatLng { | |
constructor(lat:number, long: number); | |
} | |
export class Map { | |
constructor(mapDiv: Element, opts?: any);fitBounds(bounds: any): void; | |
} | |
export class Marker { | |
constructor(opts?: any); |
.day { | |
fill: #fff; | |
stroke: #ccc; | |
} | |
.month { | |
fill: none; | |
stroke-width: 2px; | |
} |
module powerbi.visuals { | |
export interface ISvgComponent { | |
name; | |
attributes: [string[]]; | |
children: ISvgComponent[]; | |
} | |
export interface IInfoGraphData { | |
imageUris: string[]; | |
categories: string[]; |