mirror of
				https://github.com/grafana/grafana.git
				synced 2025-02-25 18:55:37 -06:00 
			
		
		
		
	
		
			
				
	
	
		
			41 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			41 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
<div class="gf-form-group">
 | 
						|
	<div class="gf-form-inline">
 | 
						|
		<div class="gf-form max-width-21">
 | 
						|
			<span class="gf-form-label width-8">Title</span>
 | 
						|
			<input type="text" class="gf-form-input" ng-model='ctrl.panel.title'></input>
 | 
						|
		</div>
 | 
						|
		<div class="gf-form">
 | 
						|
			<span class="gf-form-label width-6">Span</span>
 | 
						|
			<select class="gf-form-input gf-size-auto" ng-model="ctrl.panel.span" ng-options="f for f in [0,1,2,3,4,5,6,7,8,9,10,11,12]"></select>
 | 
						|
		</div>
 | 
						|
		<div class="gf-form max-width-21">
 | 
						|
			<span class="gf-form-label width-8">Height</span>
 | 
						|
			<input type="text" class="gf-form-input max-width-6" ng-model='ctrl.panel.height' placeholder="100px"></input>
 | 
						|
			<editor-checkbox text="Transparent" model="ctrl.panel.transparent"></editor-checkbox>
 | 
						|
		</div>
 | 
						|
	</div>
 | 
						|
 | 
						|
	<div class="gf-form-inline">
 | 
						|
		<div class="gf-form max-width-21">
 | 
						|
			<span class="gf-form-label width-8">Repeat Panel</span>
 | 
						|
			<select class="gf-form-input" ng-model="ctrl.panel.repeat" ng-options="f.name as f.name for f in ctrl.dashboard.templating.list">
 | 
						|
				<option value=""></option>
 | 
						|
			</select>
 | 
						|
		</div>
 | 
						|
		<div class="gf-form">
 | 
						|
			<span class="gf-form-label width-6">Min span</span>
 | 
						|
			<select class="gf-form-input" ng-model="ctrl.panel.minSpan" ng-options="f for f in [1,2,3,4,5,6,7,8,9,10,11,12]">
 | 
						|
				<option value=""></option>
 | 
						|
			</select>
 | 
						|
		</div>
 | 
						|
	</div>
 | 
						|
</div>
 | 
						|
 | 
						|
<br>
 | 
						|
<br>
 | 
						|
<br>
 | 
						|
 | 
						|
<panel-links-editor panel="ctrl.panel"></panel-links-editor>
 | 
						|
 | 
						|
 |