This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module powerbi.visuals { | |
export interface LineDataPoint { | |
date; | |
temperature: number | |
} | |
export interface SeriesViewModel { | |
name: string; | |
values: LineDataPoint[]; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* Power BI Visualizations | |
* | |
* Copyright (c) Microsoft Corporation | |
* All rights reserved. | |
* MIT License | |
* | |
* Permission is hereby granted, free of charge, to any person obtaining a copy | |
* of this software and associated documentation files (the ""Software""), to deal | |
* in the Software without restriction, including without limitation the rights |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module powerbi.visuals { | |
export class Meme implements IVisual { | |
public static capabilities: VisualCapabilities = { | |
suppressDefaultTitle: true, | |
objects: { | |
text: { | |
displayName: 'Properties', | |
properties: { | |
topText: { | |
displayName: 'Top Text', |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module powerbi.visuals { | |
export interface ViewModel { | |
value: number; | |
color?: string; | |
min?: number; | |
max?: number; | |
} | |
export class Thermometer implements IVisual { | |
public static capabilities: VisualCapabilities = { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module powerbi.visuals { | |
export interface ISvgComponent { | |
name; | |
attributes: [string[]]; | |
children: ISvgComponent[]; | |
} | |
export interface IInfoGraphData { | |
imageUris: string[]; | |
categories: string[]; |